Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
personoj
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
koizel
personoj
Commits
91b62765
Commit
91b62765
authored
3 years ago
by
hondet
Browse files
Options
Downloads
Patches
Plain Diff
removing useless file
parent
6a47bfdf
Loading
Loading
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
proofs/src/add-hooks.lisp
+2
-2
2 additions, 2 deletions
proofs/src/add-hooks.lisp
proofs/src/proof-dk.lisp
+0
-9
0 additions, 9 deletions
proofs/src/proof-dk.lisp
with
2 additions
and
11 deletions
proofs/src/add-hooks.lisp
+
2
−
2
View file @
91b62765
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
(
with-slots
((
goal
current-goal
)
(
ctx
context
)
(
crule
current-rule
))
ps
(
with-slots
((
goal
current-goal
)
(
ctx
context
)
(
crule
current-rule
))
ps
(
let*
((
forms
(
mapcar
#'
formula
(
s-forms
goal
)))
(
let*
((
forms
(
mapcar
#'
formula
(
s-forms
goal
)))
(
formula
(
make!-disjunction*
forms
)))
(
formula
(
make!-disjunction*
forms
)))
(
format
stream
"Prf ~:/
pvs:pp-dk
/"
formula
))))
(
pvs:pp-dk
stream
formula
))))
(
defparameter
*ps-counter*
0
(
defparameter
*ps-counter*
0
"Number of proofstates encountered. Used to create identifiers."
)
"Number of proofstates encountered. Used to create identifiers."
)
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
{ \"name\": name of the proposition,
{ \"name\": name of the proposition,
\"incr\": a unique integer to distinguish the sequents between them,
\"incr\": a unique integer to distinguish the sequents between them,
\"path\": the path from the root to the current proofstate,
\"path\": the path from the root to the current proofstate,
\"dk\": the proposition in Dedukti,
\"dk\": the proposition in Dedukti
(of type Prop)
,
\"tac\": some information on the tactic used }"
\"tac\": some information on the tactic used }"
(
let
((
elts
(
let
((
elts
`
((
name
.
,
(
prefix-no-dot
(
label
ps
)))
`
((
name
.
,
(
prefix-no-dot
(
label
ps
)))
...
...
This diff is collapsed.
Click to expand it.
proofs/src/proof-dk.lisp
deleted
100644 → 0
+
0
−
9
View file @
6a47bfdf
;; Use `pp-dk' to print the sequent of proof states as Dedukti propositions.
(
in-package
:pvs
)
(
defun
ps->dk
(
ps
)
"Transform the proofstate PS to a proposition."
(
with-slots
((
goal
current-goal
)
(
ctx
context
)
(
crule
current-rule
))
ps
(
let*
((
forms
(
mapcar
#'
formula
(
s-forms
goal
)))
(
formula
(
make!-disjunction*
forms
)))
(
format
nil
"Prf ~:/pvs:pp-dk/"
formula
))))
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