Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
why3_2018
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Per Lindgren
why3_2018
Commits
2189e495
Commit
2189e495
authored
6 years ago
by
nilfit
Browse files
Options
Downloads
Patches
Plain Diff
remove redundant `import`s and uncomment a useful `use`
parent
d259aaa2
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
peano_nat.mlw
+7
-7
7 additions, 7 deletions
peano_nat.mlw
with
7 additions
and
7 deletions
peano_nat.mlw
+
7
−
7
View file @
2189e495
...
...
@@ -48,7 +48,7 @@ end
module Add
use
import
Nat
use Nat
goal plus_ol:
forall n. O + n = n
...
...
@@ -107,9 +107,9 @@ end
module Compare
use
import
Nat
(*
use
import Add *)
(* use
import
Inconsistency *)
use Nat
use
Add
(* use Inconsistency *)
inductive le nat nat =
| Le_n : forall n:nat. le n n
...
...
@@ -132,8 +132,8 @@ end
module Sub
use
import
Nat
use
import
Compare
use Nat
use Compare
function sub (n m:nat) : nat =
match n, m with
...
...
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