Skip to content

Commit b8e7cdc

Browse files
authored
Merge pull request #125 from proux01/mc1456
Adapt to math-comp/math-comp#1456
2 parents a67db79 + d616b39 commit b8e7cdc

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

examples/field_examples.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(* `field_examples_no_check.v`. To edit this file, uncomment `Require *)
33
(* Import`s below: *)
44
(* From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat. *)
5-
(* From mathcomp Require Import ring. *)
5+
(* From mathcomp.algebra_tactics Require Import ring. *)
66

77
Set Implicit Arguments.
88
Unset Strict Implicit.

examples/field_examples_check.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat.
2-
From mathcomp Require Import ring.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Load "field_examples.v".

examples/field_examples_no_check.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat.
2-
From mathcomp Require Import ring.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Ltac field_reflection ::= field_reflection_no_check.
55

examples/from_sander.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat.
2-
From mathcomp Require Import ring.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Set Implicit Arguments.
55
Unset Strict Implicit.

examples/ring_error.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
From mathcomp Require Import all_ssreflect ssralg.
2-
From mathcomp Require Import ring.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Set Implicit Arguments.
55
Unset Strict Implicit.

examples/ring_examples.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
(* This file should be tested by loaded from `ring_examples_check.v` and *)
22
(* `ring_examples_no_check.v`. To edit this file, uncomment `Require Import`s *)
33
(* below: *)
4-
(* From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat. *)
5-
(* From mathcomp Require Import ring ssrZ. *)
4+
(* From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat ssrZ. *)
5+
(* From mathcomp.algebra_tactics Require Import ring. *)
66

77
Set Implicit Arguments.
88
Unset Strict Implicit.

examples/ring_examples_check.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat.
2-
From mathcomp Require Import ring ssrZ.
1+
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat ssrZ.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Load "ring_examples.v".

examples/ring_examples_no_check.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat.
2-
From mathcomp Require Import ring ssrZ.
1+
From mathcomp Require Import all_ssreflect ssralg ssrnum ssrint rat ssrZ.
2+
From mathcomp.algebra_tactics Require Import ring.
33

44
Ltac ring_reflection ::= ring_reflection_no_check.
55

0 commit comments

Comments
 (0)