Skip to content
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

Rm lowlang (1) #26

Merged
merged 22 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,17 @@
packages = [minuska minuska.coqPackages.coq-lsp minuska.coqPackages.coq];
};

languages-in-coq =
let
languages-in-coq = self.outputs.packages.${system}.languages-in-coq;
in
pkgs.mkShell {
inputsFrom = [languages-in-coq];
packages = [
languages-in-coq.coqPackages.coq-lsp
];
};

examples-coq =
let
examples-coq = self.outputs.packages.${system}.examples-coq;
Expand Down
4 changes: 1 addition & 3 deletions languages-in-coq/theories/examples.v
Original file line number Diff line number Diff line change
Expand Up @@ -802,9 +802,7 @@ Module imp.
(naive_interpreter Γ.1)
.
Proof.
Check @naive_interpreter_sound.
apply @naive_interpreter_sound.
{ apply _. }
apply naive_interpreter_sound.
ltac1:(assert(Htmp: isSome(RewritingTheory2_wf_heuristics (Γ.1)))).
{
ltac1:(compute_done).
Expand Down
2 changes: 1 addition & 1 deletion minuska/_CoqProject
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ theories/spec_syntax.v
theories/varsof.v
theories/syntax_properties.v
theories/semantics_properties.v
theories/spec_lowlang_interpreter.v
theories/spec_interpreter.v
theories/valuation_merge.v

theories/minuska.v
theories/string_variables.v
Expand Down
2 changes: 1 addition & 1 deletion minuska/bin/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let append_definition input_filename output_channel =
.
Proof.
apply @global_naive_interpreter_sound.
{ apply _. }
(*{ apply _. }*)
ltac1:(assert(Htmp: isSome(RewritingTheory2_wf_heuristics (fst T)))).
{
apply language_well_formed.
Expand Down
Loading
Loading