useful stuff

This commit is contained in:
Mirek Kratochvil 2023-02-18 21:30:35 +01:00
parent 4aa8b6d129
commit 97e6cd1d48
2 changed files with 23 additions and 1 deletions

View file

@ -245,6 +245,25 @@ structUnify arity str = do
s {cur = cur {heap = h', gol = gcode ++ gol cur, hed = hcode ++ hed cur}} s {cur = cur {heap = h', gol = gcode ++ gol cur, hed = hcode ++ hed cur}}
continue continue
{- terms -}
var :: InterpFn
var = do
heap <- gets (heap . cur)
scope <- gets (hvar . cur)
case derefHeap heap <$> scope M.!? 0 of
Nothing -> continue
Just (FreeRef _) -> continue
_ -> backtrack
same_term :: InterpFn
same_term = do
heap <- gets (heap . cur)
scope <- gets (hvar . cur)
case map (fmap (derefHeap heap) . (scope M.!?)) [0, 1] of
[Just a, Just b]
| a == b -> continue
_ -> backtrack
{- operator management -} {- operator management -}
op :: InterpFn op :: InterpFn
op = do op = do
@ -351,7 +370,10 @@ addPrelude = do
addProc (assertCode addClauseZ) "assert" 1 addProc (assertCode addClauseZ) "assert" 1
addBi retractall "retractall" 1 addBi retractall "retractall" 1
addBi call "call" 1 addBi call "call" 1
{- terms -}
addBi struct "struct" 3 addBi struct "struct" 3
addBi var "var" 1
addBi same_term "same_term" 2
{- code loading -} {- code loading -}
addBi (load False) "load" 1 addBi (load False) "load" 1
addBi (load True) "source" 1 addBi (load True) "source" 1

View file

@ -81,7 +81,7 @@ data Dereferenced
= FreeRef Int = FreeRef Int
| BoundRef Int Datum | BoundRef Int Datum
| NoRef | NoRef
deriving (Show) deriving (Show, Eq)
-- TRICKY: HeapRefs alone must not form a cycle other than the FreeRef case. -- TRICKY: HeapRefs alone must not form a cycle other than the FreeRef case.
derefHeap :: Heap -> Int -> Dereferenced derefHeap :: Heap -> Int -> Dereferenced