Skip to content

Commit

Permalink
Fix of silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LasseBlaauwbroek committed Oct 1, 2024
1 parent b883ae5 commit b057ec2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graph_extractor.ml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ module CICGraphMonad (G : GraphMonadType) : CICGraphMonadType
let+ named = lookup_named_map in
try
Id.Map.find id named
with Not_found -> CErrors.anomaly Pp.(str "Variable name could not be resolved")
with Not_found -> CErrors.anomaly Pp.(str "Variable name " ++ Id.print id ++ str " could not be resolved")
let lookup_def_depth =
let+ { def_depth; _ } = ask in
def_depth
Expand Down
2 changes: 1 addition & 1 deletion src/neural_learner.ml
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ module NeuralLearner : TacticianOnlineLearnerType = functor (TS : TacticianStruc
((match cache_type path with
| `File -> Feedback.msg_warning (Pp.str "Malformed proof state detected")
| _ -> ()); true)
else false
else status
| _ -> Constr.fold aux status c in
let status = aux false (TS.term_repr @@ TS.proof_state_goal ps) in
let status = Context.Named.fold_outside
Expand Down

0 comments on commit b057ec2

Please sign in to comment.