Skip to content
Snippets Groups Projects
Commit c64fc970 authored by David Bühler's avatar David Bühler
Browse files

[Eva] API: the results status is Partial until the analysis is complete.

parent 2b98c135
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,11 @@ let self = Self.state
type results = Function_calls.results = Complete | Partial | NoResults
type status = Function_calls.analysis_status =
Unreachable | SpecUsed | Builtin of string | Analyzed of results
let status = Function_calls.analysis_status
let status kf =
match Function_calls.analysis_status kf with
| Analyzed Complete as status ->
if is_computed () then status else Analyzed Partial
| status -> status
let use_spec_instead_of_definition =
Function_calls.use_spec_instead_of_definition ?recursion_depth:None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment