diff options
| author | Maxime Dénès | 2018-03-08 10:11:49 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-03-08 10:11:49 +0100 |
| commit | c31c6d92d2b2c314ea9c633f9e0f14500c2785b0 (patch) | |
| tree | 7cd0f3c56b5b1e6dbf433e66e1d03fbb89d1f8a8 /plugins/micromega | |
| parent | c5cd6f93bc14c66a3e4d7e17f8d18dc9fb2308d7 (diff) | |
| parent | 5cbb460234e32f5e325c60aaada91d3cea298b9f (diff) | |
Merge PR #6934: Warn when using “Require” in a section
Diffstat (limited to 'plugins/micromega')
| -rw-r--r-- | plugins/micromega/RingMicromega.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/micromega/RingMicromega.v b/plugins/micromega/RingMicromega.v index 543a37ff8d..f066ea462f 100644 --- a/plugins/micromega/RingMicromega.v +++ b/plugins/micromega/RingMicromega.v @@ -21,6 +21,7 @@ Require Import List. Require Import Bool. Require Import OrderedRing. Require Import Refl. +Require Coq.micromega.Tauto. Set Implicit Arguments. @@ -796,7 +797,7 @@ Definition xnormalise (t:Formula C) : list (NFormula) := | OpLe => (psub lhs rhs ,Strict) :: nil end. -Require Import Coq.micromega.Tauto. +Import Coq.micromega.Tauto. Definition cnf_normalise (t:Formula C) : cnf (NFormula) := List.map (fun x => x::nil) (xnormalise t). |
