Skip to content

Commit

Permalink
Small bugfix with "not".
Browse files Browse the repository at this point in the history
  • Loading branch information
picnic committed Oct 8, 2012
1 parent 31e13b6 commit 9a43046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host2spec.ml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ let isNot constr =
let str' = try let i = String.rindex str '#' in
String.sub str (i+1) (String.length str - i - 1)
with Not_found | Invalid_argument _ -> str in
str' = "not"
str' = "not" || str' = "Coq.Init.Logic.not"
else false

(* Parses a premisse of a predicate's constructor (or property). *)
Expand Down

0 comments on commit 9a43046

Please sign in to comment.