Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dan Frumin
iris-coq
Commits
16240e35
Commit
16240e35
authored
8 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
use Psatz without using axioms about real numbers
parent
3a8e6a91
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
_CoqProject
+1
-0
1 addition, 0 deletions
_CoqProject
prelude/psatz_axiomfree.v
+39
-0
39 additions, 0 deletions
prelude/psatz_axiomfree.v
prelude/tactics.v
+1
-1
1 addition, 1 deletion
prelude/tactics.v
with
41 additions
and
1 deletion
_CoqProject
+
1
−
0
View file @
16240e35
...
...
@@ -21,6 +21,7 @@ prelude/listset.v
prelude/streams.v
prelude/gmap.v
prelude/base.v
prelude/psatz_axiomfree.v
prelude/tactics.v
prelude/prelude.v
prelude/listset_nodup.v
...
...
This diff is collapsed.
Click to expand it.
prelude/psatz_axiomfree.v
0 → 100644
+
39
−
0
View file @
16240e35
(
**
This
file
is
a
hack
that
lets
us
use
Psatz
without
importing
all
sorts
of
axioms
about
real
numbers
.
It
has
been
created
by
copying
the
file
Psatz
.
v
from
the
Coq
distribution
,
removing
everything
defined
after
the
lia
tactic
,
and
removing
the
two
lines
importing
RMicromega
and
Rdefinitions
.
The
original
license
header
follows
.
*
)
(
************************************************************************
)
(
*
v
*
The
Coq
Proof
Assistant
/
The
Coq
Development
Team
*
)
(
*
<
O___
,,
*
INRIA
-
CNRS
-
LIX
-
LRI
-
PPS
-
Copyright
1999
-
2016
*
)
(
*
\
VV
/
**************************************************************
)
(
*
// * This file is distributed under the terms of the *)
(
*
*
GNU
Lesser
General
Public
License
Version
2.1
*
)
(
************************************************************************
)
(
*
*
)
(
*
Micromega
:
A
reflexive
tactic
using
the
Positivstellensatz
*
)
(
*
*
)
(
*
Fr
é
d
é
ric
Besson
(
Irisa
/
Inria
)
2006
-
2008
*
)
(
*
*
)
(
************************************************************************
)
From
Coq
Require
Import
ZMicromega
.
From
Coq
Require
Import
QMicromega
.
From
Coq
Require
Import
QArith
.
From
Coq
Require
Import
ZArith
.
From
Coq
Require
Import
RingMicromega
.
From
Coq
Require
Import
VarMap
.
From
Coq
Require
Tauto
.
Declare
ML
Module
"micromega_plugin"
.
Ltac
preprocess
:=
zify
;
unfold
Z
.
succ
in
*
;
unfold
Z
.
pred
in
*
.
Ltac
lia
:=
preprocess
;
xlia
;
abstract
(
intros
__
wit
__
varmap
__
ff
;
change
(
Tauto
.
eval_f
(
Zeval_formula
(
@
find
Z
Z0
__
varmap
))
__
ff
)
;
apply
(
ZTautoChecker_sound
__
ff
__
wit
);
vm_cast_no_check
(
eq_refl
true
)).
This diff is collapsed.
Click to expand it.
prelude/tactics.v
+
1
−
1
View file @
16240e35
...
...
@@ -3,7 +3,7 @@
(
**
This
file
collects
general
purpose
tactics
that
are
used
throughout
the
development
.
*
)
From
Coq
Require
Import
Omega
.
From
Coq
Require
Export
P
satz
.
From
iris
.
prelude
Require
Export
p
satz
_axiomfree
.
From
iris
.
prelude
Require
Export
decidable
.
Lemma
f_equal_dep
{
A
B
}
(
f
g
:
∀
x
:
A
,
B
x
)
x
:
f
=
g
→
f
x
=
g
x
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment