Formal verification is the act of proving or disproving the correctness of intended algorithms underlying a system with respect to a certain formal specification or property, using formal methods of mathematics.

learn more… | top users | synonyms

1
vote
2answers
52 views

Is there a way to prove a program has no bug?

I was thinking about the fact that we can prove a program has bugs. We can test it to assess that it is more or less bug resistant. But is there a way (even theoretically) to prove that a program has ...
0
votes
0answers
27 views

Verifying FFS (Find First Set) with Frama-C

I'm trying to verify a software implementation of FFS. The function of FFS is to return the index position (starting with 1) of the least significant bit in a number. I have tried in many different ...
0
votes
0answers
37 views

Verification issues with function calls (Frama-C)

I'm having problems verifying the postconditions of these two behaviors ("success" and "fail"). I guess the main problem here is that the behaviors are dependent on the variable "largest_period" and ...
0
votes
0answers
16 views

Formal Verification and EAL 7

I have seen an international standard, the Evaluation Assurance Level, for systems that requires a certain level of security assurance. My question is as follows: How does one obtain ...
0
votes
1answer
108 views

where to download CCured? [closed]

After reading a number of papers, I am trying to find the CCured sources (or even binaries) to try using it on my C source code. However, all links appear to be dead. After some Googling, I am asking ...
2
votes
1answer
52 views

Incisive Formal Verifier Installation 64 bit

Do you know IF i can run Cadence Incisive Formal Verifier in 64 BIT MODE ??
1
vote
1answer
61 views

Tools to experiment with weakly ordered concurrency

What tools exist to help one to experiment with weakly ordered concurrency? That is, in what sandbox can one play while teaching oneself about partial fences, weak atomics, acquire/consume/release ...
2
votes
1answer
66 views

Disseminating a token in Alloy

I'm following an example in Daniel Jackson's excellent book (Software Abstractions), specifically the example in which he has a token-ring setup in order to elect a leader. I'm attempting to extend ...
2
votes
1answer
129 views

Explaining algorithm proofs in plain English

I'm a programmer who never studied Algorithms formally, and have always wanted to fill in that gap in my learning. I'm currently working my way through some books and online material, and I understand ...
2
votes
1answer
42 views

Formal verification of timing requirements

I am aware of different formal verification tools for verifying properties of programs (The SPIN model checker for example). Are there are any common tools/methodologies for verifying timing ...
0
votes
0answers
61 views

Rodin EventB Toolkit proof error- Types and '0×'1 do not match

On the line with the error, I was trying to do a range restriction and then obtain the domain. Download Project Code
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 ...
5
votes
1answer
184 views

printing internal solver formulas in z3

The theorem proving tool z3 is taking a lot of time to solve a formula, which I believe it should be able to handle easily. To understand this better and possibly optimize my input to z3, I wanted to ...
1
vote
1answer
547 views

Can I generate a number of SystemVerilog properties within a loop?

I have two packed arrays of signals and I need to create a property and associated assertion for that property that proves that the two arrays are identical under certain conditions. I am formally ...
0
votes
1answer
59 views

Write a program which is partially NOT correct and prove it that it is partially not correct. [closed]

I have been asked to write a program which is partially NOT correct and SHOULD contain a LOOP. I looked at problem that are partially correct and also looked how they were proved partially correct. It ...
0
votes
1answer
98 views

How are post-conditions implemented with CQRS?

How does CQRS handle post-conditions on immediately consistent models? I realise something like this is irrelevant on an eventually consistent system w/ event sourcing etc. But if I just wanted to ...
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 ...
0
votes
2answers
409 views

Point inside rotated 2D rectangle (not using translation, trig functions, or dot product)

I was wondering if the following algorithm to check if a point is inside a rectangle is valid. I've developed it using my own intuition (no strong trig/math basis to support it), so I'd love to hear ...
1
vote
0answers
76 views

How Max-SMT solvers do work?

SMT solvers are developed at deal with the satisfiability similar like SAT. As we known, SAT is also for satisfiability and variants of SAT are proposed. One of them is max-SAT. So I want to ask ...
2
votes
1answer
108 views

Meaning of \old in ACSL post-conditions

I am a newbie user of Frama-C and have a few questions regarding assertions over pointers. Consider the C fragment below involving: two related data structures Data and Handle, s.t. Handle has a ...
1
vote
1answer
86 views

Should I use computer-aided verification tools?

I am interested in proving that some robot controller does not reach any faulty state, which I would define by a set of predicates. I know that there are open-source software tools to achieve that. ...
0
votes
1answer
366 views

Code Contracts failing example Graph.Remove(Edge e)

Here's a simple graph manipulation method which I have decorated with Code Contracts. The ensures claim won't prove but I can't see why! I believe it claims that after calling Remove(), either the ...
2
votes
2answers
234 views

Formal and testable API definition

Is there a formal language-independent language for describing an API? I want to define a utility library to be used across a number of architectures and would like some way to programatically test ...
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 ...
25
votes
10answers
2k views

Are there any provable real-world languages? (scala?)

I was taught about formal systems at university, but I was disappointed how they didn't seem to be used in the real word. I like the idea of being able to know that some code (object, function, ...
3
votes
1answer
138 views

Can applications running in ring0 be secure without formal verification?

How can one ensure security without formal verification of a program that runs in ring0? Could a VM be used without differing userspace kernelspace?
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 ...
1
vote
3answers
93 views

Exhaustive website verifier

I have this grand idea to basically employ some brute force attack to test/verify that my web application doesn't crash. Don't get me started on unit testing, and IoC stuff, this is something else ...
4
votes
8answers
2k views

Formally verifying the correctness of an algorithm

First of all, is this only possible on algorithms which have no side effects? Secondly, where could I learn about this process, any good books, articles, etc?
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 ...
8
votes
10answers
874 views

Do formal methods of program verfication have a place in industry?

I took a glimpse on Hoare Logic in college. What we did was really simple. Most of what I did was proving the correctness of simple programs consisting of while loops, if statements, and sequence of ...
0
votes
1answer
215 views

JML Evaluation of \old(Expression[Id])

I would like to know how a JML expression of the form \old(Expression[Id]) is evaluated, i.e. if I have the \old(vector[value-1]) expression, does the \old also refer to "value" or just the to the ...
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 ...
4
votes
7answers
1k views

How to design and verify distributed systems?

I've been working on a project, which is a combination of an application server and an object database, and is currently running on a single machine only. Some time ago I read a paper which describes ...
39
votes
33answers
5k views

Why can't programs be proven?

Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those ...
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 ...