PAS continues

This commit is contained in:
Mirek Kratochvil 2023-02-26 12:16:06 +01:00
parent 81df52f656
commit 27494c044e

View file

@ -17,9 +17,11 @@ import Code
, writeHeap , writeHeap
) )
import CodeLens import CodeLens
import Control.Monad (when)
import qualified Data.Map as M import qualified Data.Map as M
import Env (PrlgEnv) import Env (PrlgEnv)
import IR (Id(..), StrTable(..)) import IR (Id(..), StrTable(..))
import Lens.Family2
import Lens.Family2.State import Lens.Family2.State
prove :: Code -> PrlgEnv (Either String Bool) prove :: Code -> PrlgEnv (Either String Bool)
@ -55,7 +57,13 @@ proveStep = do
(0, _) -> headStep h (0, _) -> headStep h
(_, _) (_, _)
| u > 0 -> unifyStep h | u > 0 -> unifyStep h
_ -> err "invalid state" _ -> err "invalid interpreter state"
continue :: InterpFn
continue = pure Nothing
finish :: Bool -> InterpFn
finish = pure . Just . Right
err :: String -> InterpFn err :: String -> InterpFn
err = return . Just . Left err = return . Just . Left
@ -65,29 +73,26 @@ goalStep :: InterpFn
goalStep = do goalStep = do
g <- use (cur . gol) g <- use (cur . gol)
case g of case g of
U (Struct _):gs -> undefined -- TODO these things NEED lens-family. U (Struct s):gs -> openGoal s
[Done] -> undefined [Done] -> succeedGoal
[Cut, Done] -> undefined Cut:gs -> cutGoal
Cut:gs -> undefined Choices cs:gs -> pushChoices cs
[Choices cs, Done] -> undefined
[Choices cs, Cut, Done] -> undefined
Choices cs:gs -> undefined
_ -> err "invalid goal code" _ -> err "invalid goal code"
headStep :: [Instr] -> InterpFn headStep :: [Instr] -> InterpFn
headStep h = do headStep h = do
g <- use (cur . gol) g <- use (cur . gol)
case (h, g) of case (h, g) of
([Done], _) -> undefined ([Done], _) -> succeedHead
([Cut, Done], _) -> undefined (Cut:_, _) -> cutHead
(_, [Done]) -> undefined (_, [Done]) -> tailCall
(_, [Cut, Done]) -> undefined (_, [Cut, Done]) -> tailCut
(_, _) -> undefined (_, _) -> pushCall
unifyStep h = do unifyStep h = do
g <- use (cur . gol) g <- use (cur . gol)
case (h, g) of case (h, g) of
(U hd:_, U gd:_) -> undefined hd gd (U hd:_, U gd:_) -> unify hd gd
(_, _) -> err "invalid unification code" (_, _) -> err "invalid unification code"
{- helpers -} {- helpers -}
@ -100,18 +105,107 @@ backtrack = do
-> do -> do
cur .= c cur .= c
cho .= cs cho .= cs
pure Nothing continue
{- if there's no other choice, answer no -} {- if there's no other choice available, answer no -}
_ -> pure . Just $ Right False _ -> finish False
retCut :: InterpFn advance = do
retCut = undefined cur . gol %= tail
continue
cutHead :: InterpFn advanceHead = do
cutHead = undefined cur . hed %= tail
continue
cutGoal :: InterpFn doCut = use (cur . cut) >>= assign cho
cutGoal = undefined
retCut = do
rc <- use (cur . retcut)
when rc $ do
doCut
cur . retcut .= False
cutHead = doCut >> advanceHead
cutGoal = doCut >> advance
openGoal :: IR.Id -> InterpFn
openGoal fn = do
def <- defs `uses` (M.!? fn)
case def of
Just hs@(_:_) -> do
advance
cur . hvar .= emptyScope
cur . unis .= arity fn
cc <- use cur
let (newcur:newcho) = [cc & hed .~ h | h <- hs]
cur .= newcur
cho %= (newcho ++)
continue
_ -> do
StrTable _ _ itos <- use strtable
err $ "no definition: '" ++ (itos M.! str fn) ++ "'/" ++ show (arity fn)
pushCall :: InterpFn
pushCall = do
sgol <- use (cur . gol)
sgvar <- use (cur . gvar)
ngol <- use (cur . hed)
ngvar <- use (cur . hvar)
scut <- use (cur . cut)
sretcut <- use (cur . retcut)
cur . stk %= ((sgol, sgvar, scut, sretcut) :)
cur . gol .= ngol
cur . gvar .= ngvar
cur . hed .= []
cur . hvar .= emptyScope
cur . retcut .= False
continue
tailCall :: InterpFn
tailCall = do
ngol <- use (cur . hed)
ngvar <- use (cur . hvar)
cur . gol .= ngol
cur . gvar .= ngvar
cur . hed .= []
cur . hvar .= emptyScope
continue
tailCut :: InterpFn
tailCut = do
cur . retcut .= True
advance
tailCall
succeedHead :: InterpFn
succeedHead = do
cur . hvar .= emptyScope
cur . hed .= []
continue
succeedGoal :: InterpFn
succeedGoal = do
retCut
st <- use (cur . stk)
case st of
[] -> do
cur . gol .= []
finish True
((sgol, sgvar, scut, sretcut):st') -> do
zoom cur $ do
gol .= sgol
gvar .= sgvar
cut .= scut
retcut .= sretcut
stk .= st'
continue
pushChoices :: [[Code]] -> InterpFn
pushChoices cs = undefined
unify :: Datum -> Datum -> InterpFn
unify = undefined
{- original, TODO remove -} {- original, TODO remove -}
{-proveStep :: InterpFn {-proveStep :: InterpFn
proveStep = St.get >>= go proveStep = St.get >>= go