diff options
| author | Michael Soegtrop | 2019-05-10 13:58:31 +0200 |
|---|---|---|
| committer | Michael Soegtrop | 2019-05-10 13:58:31 +0200 |
| commit | 73f921f9634b9ccb587b2f85869d88eb12983d0f (patch) | |
| tree | d8e17412e42f9085fbaf000484f83ea98c6e65ea /test-suite | |
| parent | c659b96eaa7bb5e401786546bb293a31e5f3c3d4 (diff) | |
| parent | 281e6657c7fe5033a13c7a2fd2b6cc6f51cb6911 (diff) | |
Merge PR #9854: Improve field_simplify on fractions with constant denominator
Reviewed-by: MSoegtropIMC
Ack-by: Zimmi48
Reviewed-by: amahboubi
Reviewed-by: vbgl
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/bug_9370.out | 12 | ||||
| -rw-r--r-- | test-suite/output/bug_9370.v | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/test-suite/output/bug_9370.out b/test-suite/output/bug_9370.out new file mode 100644 index 0000000000..0ff151c8b4 --- /dev/null +++ b/test-suite/output/bug_9370.out @@ -0,0 +1,12 @@ +1 subgoal + + ============================ + 1 = 1 +1 subgoal + + ============================ + 1 = 1 +1 subgoal + + ============================ + 1 = 1 diff --git a/test-suite/output/bug_9370.v b/test-suite/output/bug_9370.v new file mode 100644 index 0000000000..a7f4b7c23e --- /dev/null +++ b/test-suite/output/bug_9370.v @@ -0,0 +1,12 @@ +Require Import Reals. +Open Scope R_scope. +Goal 1/1=1. +Proof. + field_simplify (1/1). +Show. + field_simplify. +Show. + field_simplify. +Show. + reflexivity. +Qed. |
