X-Git-Url: http://git.megacz.com/?p=coq-hetmet.git;a=blobdiff_plain;f=src%2FHaskProofToLatex.v;h=b787d3eaca3e2c70771f09e33b51dc45c30aa442;hp=dedc152bac9bb7df13ba80bbd9514770cbefa61f;hb=171beb27508a340b24ab14837e72451d0b500805;hpb=1a562d1799fa63f750837833093cb9d6296d9fc1 diff --git a/src/HaskProofToLatex.v b/src/HaskProofToLatex.v index dedc152..b787d3e 100644 --- a/src/HaskProofToLatex.v +++ b/src/HaskProofToLatex.v @@ -194,7 +194,6 @@ Fixpoint nd_ruleToRawLatexMath {h}{c}(r:Rule h c) : string := | RLeft _ _ _ _ _ _ => "Left" | RRight _ _ _ _ _ _ => "Right" | RWhere _ _ _ _ _ _ _ _ => "Where" - | RJoin _ _ _ _ _ _ _ => "RJoin" | RLetRec _ _ _ _ _ _ => "LetRec" | RCase _ _ _ _ _ _ _ _ => "Case" | RBrak _ _ _ _ _ _ => "Brak" @@ -223,7 +222,8 @@ Fixpoint nd_hideRule {h}{c}(r:Rule h c) : bool := match r with | RArrange _ _ _ _ _ _ r => nd_hideURule r | RVoid _ _ _ => true - | RJoin _ _ _ _ _ _ _ => true + | RLeft _ _ _ _ _ _ => true + | RRight _ _ _ _ _ _ => true | _ => false end.