Formal methods are a particular kind of mathematically-based techniques for the specification, development and verification of software and hardware systems.

learn more… | top users | synonyms

0
votes
0answers
32 views

Z Notation for Tiled Game Board

I have an assignment to create a Z specification for the game tic-tac-toe and Draughts/Checkers. I have completed the tic-tac-toe specification which was fairly simple given the amount of help ...
1
vote
1answer
52 views

converting grammar (written in ANTLR) of a language into formal language/mathematical notations

In my current project, my boss has assigned a job of expressing a grammar (written in ANTLR) of domain specific language into formal language/notations. For instance, the following is a small code ...
0
votes
1answer
55 views

Populating a set over time in Alloy in a completely connected network

Followup from this question... I have a completely connected graph, which is great. I've also added in the concept of time as well. I am now struggling with the concept of passing data around my ...
2
votes
1answer
146 views

LLVM static value analysis for optimization

Let's say I have a function like this: int foo(int a, int b, int d, int x){ if (c) {a = 1; b = 1; d = a;} else {a = 2; b = 2; d = 1;} if (a == b) {x = d;} else {x = 0;} return x; } This ...
1
vote
0answers
98 views

Z Notation: Representation of a 2D array

I'm a complete beginner at the Z notation. I need to represent a graph type in Z. The idea I have is to use an incidence matrix so that I can traverse freely between nodes and edges with ease. The ...
2
votes
1answer
105 views

Impact of semantics changes of Alloy 4.2 on exercise A.1.6 of the Alloy book?

According to the release notes for Alloy 4.2, there are semantics changes related to integers. These changes seem to have an impact on exercise A.1.6 of the Alloy book. In this exercise, the ...
0
votes
0answers
35 views

FOL Verification [closed]

I am trying to teach myself different approaches to software verification. I have read some articles. As far as I learned, Propositional logic with temporal generally uses model checking with SAT ...
5
votes
1answer
210 views

Limits of SMT solvers

Traditionally most work with computational logic was either propositional, in which case you used a SAT (boolean satisfiability) solver, or first-order, in which case you used a first-order theorem ...
0
votes
0answers
27 views

Is a satisfiable FOL-sentence a prime event structure always satisfiable in a regular trace event structure?

Suppose first-order logic sentence is satisfiable in the class of prime event structure. Is it also satisfiable in some regular trace event structure? (for all notions I'm referring to Madhusudan's ...
5
votes
1answer
105 views

Formal semantics of CSS box positioning

I'm a (theoretical) computer science student, and as such the investigating of semantics of programming languages is one of the subjects of my study (wikipedia). I've played around a lot with CSS and ...
2
votes
1answer
95 views

Proving correctness in formal logic

I was wondering if anyone could help me answer this question. It is from a previous exam paper and I could do with knowing the answer ready for this years exam. This question seems so simple that I ...
1
vote
1answer
173 views

Formal Methods, Logic and VDM past exam paper questions

I was hoping someone can help me with the following questions, answers would be best but if you can point me in the right direction that will be helpful also. I am a final year uni student and these ...
2
votes
3answers
161 views

Formal Methods - Algebraic Specification vs Object Oriented

I am in the middle of some research and have not been able to find much literature to help, I want to compare the platform dependencies of the two formal methods; algebraic specification and object ...
0
votes
1answer
132 views

Alloy fact NOT both properties

I have a piece of code in ALLOY I am trying to do a restaurant reservation system and I have this sig and relation between them. abstract sig Table{ breakfast: one breakFast, lunch: one Lunch, ...
2
votes
2answers
95 views

What does “loops must be folded to ensure termination” mean?

I came across "loops must be folded to enusre termination" in a paper on formal methods (abstract interpretation to be precise). I am clear on what termination means, but I do not know what a folded ...
1
vote
2answers
129 views

Using alloy instances for creating Java instances and automatically generate testcase

I want to use alloy4 for an automated testcase generation research project. can anyone plz help me with this ? how can I use alloy for creating java instance objects by using alloy generated instances ...
1
vote
1answer
236 views

Problem with predicate in Alloy

So I have the following bit of code in Alloy: sig Node { } sig Queue { root : Node } pred SomePred { no q, q' : Queue | q.root = q'.root } run SomePred for 3 but this won't yield any instance ...
5
votes
2answers
217 views

Using forall within recursive Function definition

I'm trying to use Function to define a recursive definition using a measure, and I'm getting the error: Error: find_call_occs : Prod I'm posting the whole source code at the bottom, but my function ...
9
votes
1answer
539 views

Forall introduction in coq?

I'm trying to (classically) prove ~ (forall t : U, phi) -> exists t: U, ~phi in Coq. What I'm trying to do is prove it contrapositively: 1. Assume there is no such t (so ~(exists t: U, ~phi)) ...
4
votes
3answers
316 views

Tool for model checking large, distributed C++ projects such as KDE?

Is there a tool which can handle model checking large, real-world, mostly-C++, distributed systems, such as KDE? (KDE is a distributed system in the sense that it uses IPC, although typically all of ...
29
votes
10answers
2k views

Can Haskell functions be proved/model-checked/verified with correctness properties?

Continuing on from ideas in: Are there any provable real-world languages? I don't know about you, but I'm sick of writing code that I can't guarantee. After asking the above question and getting a ...
0
votes
1answer
121 views

Getting an item by its date in Alloy

I'm stuck on this formal methods homework problem and I'm not sure what I'm not getting right. I have two signatures, Item and ToDo which are defined as so: sig Item { due : Date lone -> ...
5
votes
3answers
161 views

Logic for software verification

I'm looking at the requirements for automated software verification, i.e. a program that takes in code (ordinary procedural code written in languages like C and Java), generates a bunch of theorems ...
3
votes
3answers
253 views

Java Modeling Language for C?

I remember reading something about a formal specification language for C a while ago, but I can not find it now that I need it. It was inspired by JML, using as far as I saw the same syntax. The ...
65
votes
10answers
2k views

What are the most interesting equivalences arising from the Curry-Howard Isomorphism?

I came upon the Curry-Howard Isomorphism relatively late in my programming life, and perhaps this contributes to my being utterly fascinated by it. It implies that for every programming concept there ...
4
votes
5answers
2k views

What is the best way of determining a loop invariant?

When using formal aspects to create some code is there a generic method of determining a loop invariant or will it be completely different depending on the problem?
3
votes
2answers
227 views

Want tool to obtain linear temporal logic spec from UML 2.0 sequence diagram

i am working on checking model consistency of software. to do this i need to write linear temporal logic for UML 2.0 sequence diagram. if any body have any other tool for the same please response as ...
5
votes
3answers
106 views

Splitting a test to a set of smaller tests

I want to be able to split a big test to smaller tests so that when the smaller tests pass they imply that the big test would also pass (so there is no reason to run the original big test). I want to ...
10
votes
2answers
471 views

Experiences with using Alloy in real-world projects

I have been interested in formal methods for some time. I have used formal methods to reason about some very specific sub-areas of a few projects I have been working on. I was never able to convince ...
4
votes
6answers
698 views

How to learn about formal top-down approach to software architecture?

I'm a software developer interested in information retrieval. Currently I'm working on my 3rd search engine project and am VERY frustrated about the amount of boilerplate code that is written again ...
16
votes
7answers
1k views

Teaching programming and formal methods

Here's a sort of odd question. I'm in the process of writing a book on learning to program using formal methods, and I'm going to target it toward people with some programming experience. The idea ...
5
votes
8answers
1k views

Should I use formal methods on my software project?

Our client wants us to build a web-based, rich internet application for gathering software requirements. Basically it's a web-based case tool that follows a specific process for getting requirements ...
9
votes
6answers
448 views

Formal Methods and Enterprises

So... I teach formal methods in software engineering. I also teach "agile methodologies". Most people seem to think this is contradictory. I think it makes a lot of sense... I also work for a ...
4
votes
5answers
1k views

Why not use SPARKAda?

Beyond some valid reasons not to use a new tool such as support of legacy code, no in-house SPARKAda knowledge base, why hasn't SPARKAda caught on? It seems like a very sound tool for many projects ...
4
votes
5answers
747 views

What is your experience with software model checking?

What types of applications have you used model checking for? What model checking tool did you use? How would you summarize your experience w/ the technique, specifically in evaluating its ...