-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added reduction from MMA_HALTING to HaltLclosed without the L framewo…
…rk / MetaCoq added MMA_computable to L_computable_closed without the L framework / MetaCoq added MM_computable_to_MMA_computable made HaltLclosed more prominent in reduction chains generalized deterministic simulation to uniformly confluent simulation
- Loading branch information
Showing
26 changed files
with
1,655 additions
and
223 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
@@ -1,18 +1,22 @@ | ||
Require Import Undecidability.L.L. | ||
Require Import Undecidability.Synthetic.Undecidability. | ||
From Undecidability.Synthetic Require Import | ||
DecidabilityFacts EnumerabilityFacts. | ||
Require Import Undecidability.L.Enumerators.term_enum. | ||
From Undecidability.Synthetic Require Import DecidabilityFacts. | ||
|
||
Require Import Undecidability.TM.TM. | ||
Require Import Undecidability.TM.TM_undec. | ||
Require Import Undecidability.L.Reductions.TM_to_L. | ||
Require Import Undecidability.MinskyMachines.MMA2_undec. | ||
Require Undecidability.L.Reductions.MMA_HALTING_to_HaltLclosed. | ||
|
||
(** ** HaltL is undecidable *) | ||
(* The Halting problem for weak call-by-value lambda-calculus is undecidable *) | ||
Lemma HaltLclosed_undec : | ||
undecidable (HaltLclosed). | ||
Proof. | ||
apply (undecidability_from_reducibility MMA2_HALTING_undec). | ||
eapply MMA_HALTING_to_HaltLclosed.reduction. | ||
Qed. | ||
|
||
(** ** HaltL is undecidable *) | ||
Lemma HaltL_undec : | ||
undecidable (HaltL). | ||
Proof. | ||
apply (undecidability_from_reducibility HaltMTM_undec). | ||
eapply HaltMTM_to_HaltL. | ||
apply (undecidability_from_reducibility HaltLclosed_undec). | ||
now exists (fun '(exist _ M _) => M). | ||
Qed. |
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.