Tagged Questions
The formal-methods tag has no wiki summary.
35
votes
6answers
678 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 ...
18
votes
7answers
763 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 ...
14
votes
7answers
872 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 ...
9
votes
7answers
947 views
How can I make a career in Formal Methods programming in USA?
I've found that my (USA) professors recoil with a near-disgust when I ask them about how to pursue a career in Formal Methods programming.
They say, "Oh, that stuff! That stuff is anal. You don't ...
8
votes
6answers
364 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 ...
6
votes
1answer
254 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))
...
6
votes
1answer
229 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 ...
5
votes
3answers
93 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 ...
5
votes
8answers
708 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 ...
4
votes
1answer
136 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 ...
4
votes
3answers
215 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 ...
4
votes
5answers
530 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?
4
votes
6answers
463 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 ...
3
votes
3answers
115 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
171 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 ...
3
votes
2answers
158 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 ...
3
votes
5answers
552 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 ...
2
votes
5answers
629 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 ...
1
vote
1answer
33 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
0answers
57 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
107 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 ...
0
votes
1answer
64 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,
...
0
votes
0answers
59 views
Implementing heap with alloy
I'm trying to implement a static model of binary heap using alloy (max-heap).
I created a simple model by only using a Heap class (or atom) and a Node class. The Node class contain references to the ...
0
votes
1answer
56 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 -> ...