Require Import List Arith Omega.
From Undecidability Require Import ILL.Definitions.
From Undecidability.Shared.Libs.DLW Require Import Utils.utils Vec.pos Vec.vec.
From Undecidability.ILL.Code Require Import subcode sss.
From Undecidability.ILL.Mm Require Import mm_defs.
From Undecidability.ILL.Ll Require Import eill eill_mm.
Local Notation "P '/MM/' s ->> t" := (sss_compute (@mm_sss _) P s t) (at level 70, no associativity).
Local Notation "P '/MM/' s ~~> t" := (sss_output (@mm_sss _) P s t) (at level 70, no associativity).
Section MM_HALTING_EILL_PROVABILITY.
Let f : MM_PROBLEM -> EILL_SEQUENT.
Proof.
intros (n & P & v).
exact (Sig (1,P) 0, vec_map_list v (fun p : pos n => pos2nat p), 2 * n + 1).
Defined.
Theorem MM_HALTS_ON_ZERO_EILL_PROVABILITY : MM_HALTS_ON_ZERO ⪯ EILL_PROVABILITY.
Proof.
exists f.
intros (n & P & v); simpl.
rewrite <- G_eill_mm; simpl; auto.
split.
+ intros (? & _); auto.
+ split; simpl; auto.
Qed.
End MM_HALTING_EILL_PROVABILITY.