From e12110637730d067c216abcc86185b761189b342 Mon Sep 17 00:00:00 2001 From: vblot <24938579+vblot@users.noreply.github.com> Date: Fri, 28 May 2021 18:29:37 +0200 Subject: getting rid of native-coq (#95) --- src/Int63/Int63.v | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/Int63/Int63.v (limited to 'src/Int63/Int63.v') diff --git a/src/Int63/Int63.v b/src/Int63/Int63.v new file mode 100644 index 0000000..acee305 --- /dev/null +++ b/src/Int63/Int63.v @@ -0,0 +1,23 @@ +(**************************************************************************) +(* *) +(* SMTCoq *) +(* Copyright (C) 2011 - 2021 *) +(* *) +(* See file "AUTHORS" for the list of authors *) +(* *) +(* This file is distributed under the terms of the CeCILL-C licence *) +(* *) +(**************************************************************************) + + +(** Glue with the Int31 library of standard coq, which is linked to + native integers during VM computations. + + CAUTION: The name "Int63" is given for compatibility reasons, but + int31 is used. **) + +Require Export Ring31. +Require Export Int63Native. +Require Export Int63Op. +Require Export Int63Axioms. +Require Export Int63Properties. -- cgit