aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/ssrtest/testmx.v
diff options
context:
space:
mode:
authorEnrico Tassi2018-04-12 09:54:36 +0200
committerEnrico Tassi2018-04-12 09:54:36 +0200
commitd54b8dff818f0b1218df14cfb2b813da93154fa9 (patch)
treeb89257dd429d6d57c7efbe6403b9a231392b2a8b /mathcomp/ssrtest/testmx.v
parentc17414bbef21bb3d0b96ee004c29ef7d56e55e2e (diff)
remove ssrtest: it now belongs to Coq
Diffstat (limited to 'mathcomp/ssrtest/testmx.v')
-rw-r--r--mathcomp/ssrtest/testmx.v37
1 files changed, 0 insertions, 37 deletions
diff --git a/mathcomp/ssrtest/testmx.v b/mathcomp/ssrtest/testmx.v
deleted file mode 100644
index 7d90d29..0000000
--- a/mathcomp/ssrtest/testmx.v
+++ /dev/null
@@ -1,37 +0,0 @@
-(* (c) Copyright 2006-2016 Microsoft Corporation and Inria. *)
-(* Distributed under the terms of CeCILL-B. *)
-Require Import mathcomp.ssreflect.ssreflect.
-From mathcomp
-Require Import ssrfun ssrbool eqtype ssrnat.
-From mathcomp
-Require Import ssralg matrix.
-
-Set Implicit Arguments.
-Unset Strict Implicit.
-Import Prenex Implicits.
-
-Local Open Scope nat_scope.
-Local Open Scope ring_scope.
-
-Section TestMx.
-
-Variable R : ringType.
-Variable M : 'M[R]_2.
-
-Goal 1%:M = M.
-Proof.
-Set Printing All.
-rewrite [(1%:M : 'M_(1+1)%N)]scalar_mx_block.
-(* Success with 1.2 *)
-(* With ssreflect 1.3, fails with error : *)
-(* Toplevel input, characters 0-44: *)
-(* Error: pattern (1%:M) does not match LHS of scalar_mx_block *)
-Admitted.
-
-Goal 1%:M = M.
-Proof.
-rewrite [1%:M](scalar_mx_block 1%N 1%N).
-(* Success in both ssr 1.2 and 1.3 *)
-Admitted.
-
-End TestMx. \ No newline at end of file