Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions theories/lra.v
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,10 @@

(* Main tactics, called from the elpi parser (c.f., lra.elpi) *)

Ltac lra_witness n f := let w := fresh "__wit" in wlra_Q w f.
Ltac nra_witness n f := let w := fresh "__wit" in wnra_Q w f.
Ltac lra_witness n f := let w := fresh "__wit" in mp_wlra_Q w f.

Check failure on line 404 in theories/lra.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp:2.4.0-rocq-prover-9.0)

The reference mp_wlra_Q was not found in the current environment.

Check failure on line 404 in theories/lra.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp-dev:rocq-prover-9.0)

The reference mp_wlra_Q was not found in the current environment.

Check failure on line 404 in theories/lra.v

View workflow job for this annotation

GitHub Actions / build (mathcomp/mathcomp-dev:rocq-prover-dev)

The reference mp_wlra_Q was not found in the current environment.
Ltac nra_witness n f := let w := fresh "__wit" in mp_wnra_Q w f.
Ltac psatz_witness n f :=
let w := fresh "__wit" in wsos_Q w f || wpsatz_Q n w f.
let w := fresh "__wit" in mp_wsos_Q w f || mp_wpsatz_Q n w f.

Ltac tacF F hyps rff ff varmap wit :=
let irff := fresh "__rff" in
Expand Down
Loading