assert actually recompiles

This commit is contained in:
Mirek Kratochvil 2022-11-26 16:03:45 +01:00
parent 83e1cb5cc7
commit 1cca8b8dce
2 changed files with 5 additions and 13 deletions

View file

@ -9,6 +9,7 @@ import Code
, Interp(..) , Interp(..)
, heapStruct , heapStruct
) )
import qualified Compiler as Co
import Control.Monad.IO.Class (liftIO) import Control.Monad.IO.Class (liftIO)
import Control.Monad.Trans.Class (lift) import Control.Monad.Trans.Class (lift)
import Control.Monad.Trans.State.Lazy (get, gets, modify) import Control.Monad.Trans.State.Lazy (get, gets, modify)
@ -73,19 +74,10 @@ assertFact :: BuiltinFn
assertFact = do assertFact = do
scope <- gets (hvar . cur) scope <- gets (hvar . cur)
heap <- gets (heap . cur) heap <- gets (heap . cur)
{- TODO this needs to go through PrlgInt because of cuts in assertClause -} case Co.compileGoal . Co.struct2goal . Co.squashVars <$>
let atom a = Just [U a] Co.heapStructPrlgInt Nothing heap (fst $ scope M.! 0) of
struct s args = Just (U s : concat args)
hrec (HeapRef tgt) src
| src == tgt = Just [U (LocalRef tgt 0)]
| otherwise = Nothing
code = heapStruct atom struct hrec heap . fst $ scope M.! 0
case code of
Just (U (Struct s):head) -> do Just (U (Struct s):head) -> do
addClause s (head ++ [NoGoal]) addClause s $ head ++ [NoGoal]
return Nothing
Just [U (Atom a)] -> do
addClause (IR.Id a 0) [NoGoal]
return Nothing return Nothing
_ -> backtrack _ -> backtrack

View file

@ -48,7 +48,7 @@ compileGoals andop cut = go'
go x = [compileGoal x] go x = [compileGoal x]
compileGoal :: PrlgInt -> Code compileGoal :: PrlgInt -> Code
compileGoal = compileArg compileGoal = compileArg . struct2goal
compileArg :: PrlgInt -> Code compileArg :: PrlgInt -> Code
compileArg (CallI s args) = U (Struct s) : concatMap compileArg args compileArg (CallI s args) = U (Struct s) : concatMap compileArg args