TIM -> TI

This commit is contained in:
crumbtoo
2023-11-30 14:08:19 -07:00
parent e01f0d67a9
commit 089afa0ea1
5 changed files with 10 additions and 10 deletions

View File

@@ -87,7 +87,7 @@ data RLPCOptions = RLPCOptions
}
deriving Show
data Evaluator = EvaluatorGM | EvaluatorTIM
data Evaluator = EvaluatorGM | EvaluatorTI
deriving Show
data Severity = Error

View File

@@ -109,7 +109,7 @@ doAdmin :: GmState -> GmState
doAdmin st = st & gmStats . stsReductions %~ succ
-- the state is considered final if there is no more code to execute. very
-- simple compared to TIM
-- simple compared to TI
isFinal :: GmState -> Bool
isFinal st = null $ st ^. gmCode

View File

@@ -1,12 +1,12 @@
{-|
Module : TIM
Description : The Template Instantiation Machine
Module : TI
Description : The Template Instantiator
-}
{-# LANGUAGE LambdaCase, BlockArguments #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE TemplateHaskell #-}
module TIM
module TI
( module Core.Examples
, hdbgProg
) where