For example, I have this hypothesis in my context:
Heq: (a =? b) &&
(c =? d) &&
(e =? f) = true
that I would like to transform to this:
Heq: (a = b) /\
(c = d) /\
(e = f)
I have seen this post
coq tactic for replacing bools with Prop
but it was not really strightforward to me to use those tactics because there is no Is_true
in the expression in my context.
Edit:
Heq
is modified by adding = true
since I made a mistake first time reading it from the context.