useful stuff
This commit is contained in:
parent
4aa8b6d129
commit
97e6cd1d48
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue