Skip to content

Commit

Permalink
Update YAML witness validation result for refutation under new scorin…
Browse files Browse the repository at this point in the history
…g schema
  • Loading branch information
sim642 committed Nov 6, 2024
1 parent 7719082 commit 546a8d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/witness/yamlWitness.ml
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,9 @@ struct
| true when !cnt_disabled > 0 ->
Error "witness disabled"
| _ when !cnt_refuted > 0 ->
Ok (Svcomp.Result.False None)
(* Refuted only when assuming the invariant is reachable. *)
(* Ok (Svcomp.Result.False None) *) (* Wasn't a problem because valid*->correctness->false gave 0 points under old validator track scoring schema: https://doi.org/10.1007/978-3-031-22308-2_8. *)
Ok Svcomp.Result.Unknown (* Now valid*->correctness->false gives 1p (negative) points under new validator track scoring schema: https://doi.org/10.1007/978-3-031-57256-2_15. *)
| _ when !cnt_unconfirmed > 0 ->
Ok Unknown
| _ ->
Expand Down

0 comments on commit 546a8d0

Please sign in to comment.