-
Notifications
You must be signed in to change notification settings - Fork 44
#with_goal tactic #1430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bodeveix
wants to merge
8
commits into
Deducteam:master
Choose a base branch
from
bodeveix:with_goal
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
#with_goal tactic #1430
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e7c3645
with_goal
bodeveix c634d9b
Merge remote-tracking branch 'dk/master' into with_goal
bodeveix 1fc6476
with_goal example
bodeveix 7e0e8d5
long lines
bodeveix 9afe9fd
Merge remote-tracking branch 'dk/master' into with_goal
bodeveix 3d7f192
remarks
bodeveix f41c212
merge
bodeveix 6adf777
merge
bodeveix File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| (** Configuration for tactics based on first-order logic. *) | ||
|
|
||
| open Common open Error | ||
| open Core open Term | ||
|
|
||
| type config = | ||
| { symb_Prop: sym (** Type of propositions. *) | ||
| ; symb_P : sym (** Encoding of propositions. *) | ||
| ; symb_Set : sym (** Type of sets. *) | ||
| ; symb_T : sym (** Encoding of types. *) | ||
| ; symb_imp : sym (** Implication(⇒) symbol. *) | ||
| ; symb_all : sym (** Forall(∀) symbol. *) | ||
| } | ||
|
|
||
| (** [get_config ss pos] build the configuration using [ss]. *) | ||
| let get_config : Sig_state.t -> Pos.popt -> config = fun ss pos -> | ||
| let builtin = Builtin.get ss pos [] in | ||
| let symb_P = builtin "P" and symb_T = builtin "T" in | ||
| let symb_Prop = | ||
| match unfold Timed.(!(symb_P.sym_type)) with | ||
| | Prod(a,_) -> | ||
| begin | ||
| match unfold a with | ||
| | Symb s -> s | ||
| | _ -> | ||
| fatal pos "The type of %a is not of the form Prop → _ \ | ||
| with Prop a symbol." Print.sym symb_P | ||
| end | ||
| | _ -> fatal pos "The type of %a is not a product" Print.sym symb_P | ||
| and symb_Set = | ||
| match unfold Timed.(!(symb_T.sym_type)) with | ||
| | Prod(a,_) -> | ||
| begin | ||
| match unfold a with | ||
| | Symb s -> s | ||
| | _ -> | ||
| fatal pos "The type of %a is not of the form Prop → _ \ | ||
| with Prop a symbol." Print.sym symb_T | ||
| end | ||
| | _ -> fatal pos "The type of %a is not a product" Print.sym symb_T | ||
| in | ||
| { symb_Prop | ||
| ; symb_P | ||
| ; symb_Set | ||
| ; symb_T | ||
| ; symb_imp = builtin "imp" | ||
| ; symb_all = builtin "all" | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.