code-conjure-0.3.4: src/Conjure/Engine.hs
-- |
-- Module : Conjure.Engine
-- Copyright : (c) 2021 Rudy Matela
-- License : 3-Clause BSD (see the file LICENSE)
-- Maintainer : Rudy Matela <rudy@matela.com.br>
--
-- An internal module of 'Conjure',
-- a library for Conjuring function implementations
-- from tests or partial definitions.
-- (a.k.a.: functional inductive programming)
{-# LANGUAGE CPP, RecordWildCards, TupleSections #-}
module Conjure.Engine
( conjure
, conjureWithMaxSize
, Args(..)
, args
, conjureWith
, conjpure
, conjpureWith
, candidateExprs
, module Data.Express
, module Data.Express.Fixtures
, module Test.Speculate.Engine
, module Test.Speculate.Reason
)
where
import Control.Monad (when)
import Data.Express
import Data.Express.Fixtures hiding ((-==-))
import qualified Data.Express.Triexpr as T
import Test.LeanCheck
import Test.LeanCheck.Tiers
import Test.LeanCheck.Error (errorToTrue, errorToFalse, errorToNothing)
import Test.Speculate.Reason (Thy, rules, equations, canReduceTo, printThy)
import Test.Speculate.Engine (theoryFromAtoms, groundBinds, boolTy)
import Conjure.Expr
import Conjure.Conjurable
-- | Conjures an implementation of a partially defined function.
--
-- Takes a 'String' with the name of a function,
-- a partially-defined function from a conjurable type,
-- and a list of building blocks encoded as 'Expr's.
--
-- For example, given:
--
-- > square :: Int -> Int
-- > square 0 = 0
-- > square 1 = 1
-- > square 2 = 4
-- >
-- > primitives :: [Expr]
-- > primitives =
-- > [ val (0::Int)
-- > , val (1::Int)
-- > , value "+" ((+) :: Int -> Int -> Int)
-- > , value "*" ((*) :: Int -> Int -> Int)
-- > ]
--
-- The conjure function does the following:
--
-- > > conjure "square" square primitives
-- > square :: Int -> Int
-- > -- testing 3 combinations of argument values
-- > -- looking through 3 candidates of size 1
-- > -- looking through 3 candidates of size 2
-- > -- looking through 5 candidates of size 3
-- > square x = x * x
--
-- The primitives list is defined with 'val' and 'value'.
conjure :: Conjurable f => String -> f -> [Expr] -> IO ()
conjure = conjureWith args
-- | Like 'conjure' but allows setting the maximum size of considered expressions
-- instead of the default value of 12.
--
-- > conjureWithMaxSize 10 "function" function [...]
conjureWithMaxSize :: Conjurable f => Int -> String -> f -> [Expr] -> IO ()
conjureWithMaxSize sz = conjureWith args
{ maxSize = sz
, maxEquationSize = min sz (maxEquationSize args)
}
-- | Arguments to be passed to 'conjureWith' or 'conjpureWith'.
-- See 'args' for the defaults.
data Args = Args
{ maxTests :: Int -- ^ maximum number of tests to each candidate
, maxSize :: Int -- ^ maximum size of candidate bodies
, maxRecursiveCalls :: Int -- ^ maximum number of allowed recursive calls
, maxEquationSize :: Int -- ^ maximum size of equation operands
, maxRecursionSize :: Int -- ^ maximum size of a recursive expression expansion
, maxSearchTests :: Int -- ^ maximum number of tests to search for defined values
, forceTests :: [[Expr]] -- ^ force tests
}
-- | Default arguments to conjure.
--
-- * 60 tests
-- * functions of up to 12 symbols
-- * maximum of 1 recursive call
-- * pruning with equations up to size 5
-- * recursion up to 60 symbols
-- * search for defined applications for up to 100000 combinations
args :: Args
args = Args
{ maxTests = 60
, maxSize = 12
, maxRecursiveCalls = 1
, maxEquationSize = 5
, maxRecursionSize = 60
, maxSearchTests = 100000
, forceTests = []
}
-- | Like 'conjure' but allows setting options through 'Args'/'args'.
--
-- > conjureWith args{maxSize = 11} "function" function [...]
conjureWith :: Conjurable f => Args -> String -> f -> [Expr] -> IO ()
conjureWith args nm f es = do
print (var (head $ words nm) f)
putStrLn $ "-- testing " ++ show (length ts) ++ " combinations of argument values"
pr 1 rs
where
pr n [] = putStrLn $ "cannot conjure\n"
pr n ((is,cs):rs) = do
putStrLn $ "-- looking through "
++ show (length cs)
++ " candidates of size " ++ show n
-- when (n<=7) $ putStrLn $ unlines $ map show es
case is of
[] -> pr (n+1) rs
(i:_) -> do putStrLn $ showEq i
putStrLn ""
rs = zip iss css
(iss, css, ts) = conjpureWith args nm f es
-- | Like 'conjure' but in the pure world.
--
-- Returns a triple with:
--
-- 1. tiers of implementations
-- 2. tiers of candidate bodies (right type)
-- 3. tiers of candidate expressions (any type)
-- 4. a list of tests
conjpure :: Conjurable f => String -> f -> [Expr] -> ([[Expr]], [[Expr]], [Expr])
conjpure = conjpureWith args
-- | Like 'conjpure' but allows setting options through 'Args' and 'args'.
conjpureWith :: Conjurable f => Args -> String -> f -> [Expr] -> ([[Expr]], [[Expr]], [Expr])
conjpureWith Args{..} nm f es = (implementationsT, candidatesT, tests)
where
tests = [ffxx //- bs | bs <- dbss]
implementationsT = mapT (vffxx -==-) $ filterT implements candidatesT
implements e = apparentlyTerminates rrff e
&& requal (vffxx,e) ffxx vffxx
candidatesT = take maxSize
$ candidateExprs nm f maxEquationSize maxRecursiveCalls (===) es
ffxx = conjureApplication nm f
vffxx = conjureVarApplication nm f
(rrff:xxs) = unfoldApp vffxx
(===) = conjureAreEqual f maxTests
requal dfn e1 e2 = isTrueWhenDefined dfn (e1 -==- e2)
(-==-) = conjureMkEquation f
isTrueWhenDefined dfn e = all (errorToFalse . reval dfn maxRecursionSize False) $ map (e //-) dbss
bss, dbss :: [[(Expr,Expr)]]
bss = take maxSearchTests $ groundBinds (conjureTiersFor f) ffxx
fbss = [zip xxs vs | vs <- forceTests, isWellTyped $ foldApp (rrff:vs)]
dbss = take maxTests
$ ([bs | bs <- bss, errorToFalse . eval False $ e //- bs] \\ fbss)
++ fbss
where
e = ffxx -==- ffxx
candidateExprs :: Conjurable f
=> String -> f
-> Int
-> Int
-> (Expr -> Expr -> Bool)
-> [Expr]
-> [[Expr]]
candidateExprs nm f sz mc (===) es = as \/ ts
where
ts | typ efxs == boolTy = foldAppProducts andE [cs, rs]
\/ foldAppProducts orE [cs, rs]
| otherwise = filterT keepIf
$ foldAppProducts (conjureIf f) [cs, as, rs]
\/ foldAppProducts (conjureIf f) [cs, rs, as]
cs = filterT (`notElem` [val False, val True])
$ forN (hole (undefined :: Bool))
as = forN efxs
rs = forR efxs
forN h = enumerateAppsFor h keep [exs ++ es]
forR h = filterT (\e -> (ef `elem`) (vars e))
$ enumerateAppsFor h keep $ [exs ++ es] \/ recs
efxs = conjureVarApplication nm f
(ef:exs) = unfoldApp efxs
keep e = isRootNormalE thy e
&& count (== ef) (vars e) <= mc
thy = theoryFromAtoms (===) sz . (:[]) . nub
$ conjureHoles f ++ [val False, val True] ++ es
ds = map snd $ deconstructors f 60 es
recs = filterT (descends (`elem` ds) efxs)
$ foldAppProducts ef [forN h | h <- conjureArgumentHoles f]
-- | Returns whether the given recursive call
-- deconstructs one of its arguments.
--
-- > > deconstructs1 ... (factorial' (dec' xx))
-- > True
--
-- > > deconstructs1 ... (factorial' (xx -+- one))
-- > False
--
-- > > deconstructs1 ... (xxs -++- yys)
-- > False
--
-- > > deconstructs1 ... (xxs -++- tail' yys)
-- > True
--
-- > > deconstructs1 ... (zero-:-xxs -++- tail' yys)
-- > True
--
-- 'deconstructs1' implies 'descends'.
deconstructs1 :: (Expr -> Bool) -> Expr -> Expr -> Bool
deconstructs1 isDec _ e = any isDeconstruction exs
where
(ef:exs) = unfoldApp e
isDeconstruction e = not (null cs) && all isDec cs
where
cs = consts e
-- | Returns whether a non-empty subset of arguments
-- descends arguments by deconstruction.
--
-- > > descends isDec (xxs -++- yys) (xxs -++- tail' yys)
-- > True
--
-- > > descends isDec (xxs -++- yys) (xxs -++- yys)
-- > False
--
-- > > descends isDec (xxs -++- yys) (head' xxs -:- tail xxs -++- head' yys -:- tail yys)
-- > False
-- > > descends isDec (xxs -\/- yys) (yys -\/- tail' xxs)
-- > True
--
-- The following are not so obvious:
--
-- > > descends isDec (xxs -++- yys) (tail' yys -++- yys)
-- > False
--
-- > > descends isDec (xxs -++- yys) (xx-:-xxs -++- tail' yys)
-- > True
--
-- For all possible sets of arguments (2^n - 1 elements: 1 3 7 15 31),
-- see if any projects the same variables while only using deconstructions
-- and where there is at least a single deconstruction.
descends :: (Expr -> Bool) -> Expr -> Expr -> Bool
descends isDec e' e = any d1 ss
where
d1 exys = nubVars (foldApp exs) == nubVars (foldApp eys)
&& all isNotConstruction eys
&& any isDeconstruction eys
where
exs = map fst exys
eys = map snd exys
ss = init $ sets exys
exys = zip exs eys
(_:exs) = unfoldApp e'
(_:eys) = unfoldApp e
isDeconstruction e = not (null cs) && all isDec cs
where
cs = consts e
isNotConstruction e = all isDec cs
where
cs = consts e
-- | Example:
--
-- > > deconstructors and 60
-- > > [ val False
-- > > , val True
-- > > , value "null" (null::[Bool]->Bool)
-- > > , value "head" (head :: [Bool] -> Bool)
-- > > , value "tail" (tail :: [Bool] -> [Bool])
-- > > , value "drop1" (drop 1 :: [Bool] -> [Bool])
-- > > ]
-- > [tail :: [Bool] -> [Bool]]
--
-- In this case, inc is a deconstructor as it converges for more than half the
-- values:
--
-- > > deconstructors (negate :: Int -> Int) 60
-- > > [ value "eq0" ((==0) :: Int -> Bool)
-- > > , val (0 :: Int)
-- > > , value "==" ((==) :: Int -> Int -> Bool)
-- > > , value "dec" (subtract 1 :: Int -> Int)
-- > > , value "inc" ((+1) :: Int -> Int)
-- > > ]
-- > [ ((0 ==) :: Int -> Bool,dec :: Int -> Int)
-- > , ((0 ==) :: Int -> Bool,inc :: Int -> Int)
-- > ]
deconstructors :: Conjurable f => f -> Int -> [Expr] -> [(Expr, Expr)]
deconstructors f maxTests es =
[ (z, d)
| d <- es
, h <- take 1 [h | h <- hs, mtyp (d :$ h) == mtyp h]
, z <- take 1 [z | z <- es2, mtyp (z :$ h) == mtyp b && isDeconstructor h z d]
]
where
b = hole (undefined :: Bool)
hs = nub $ conjureArgumentHoles f
isDeconstructor = conjureIsDeconstructor f maxTests
es2 = es ++ [e1 :$ e2 | e1 <- es, e2 <- es, isWellTyped (e1 :$ e2)]
candidatesTD :: (Expr -> Bool) -> Expr -> [Expr] -> [[Expr]]
candidatesTD keep h primitives = filterT (not . hasHole)
$ town [[h]]
where
most = mostGeneralCanonicalVariation
town :: [[Expr]] -> [[Expr]]
town ((e:es):ess) | keep (most e) = [[e]] \/ town (expand e \/ (es:ess))
| otherwise = town (es:ess)
town ([]:ess) = []:town ess
town [] = []
expand :: Expr -> [[Expr]]
expand e = case holesBFS e of
[] -> []
(h:_) -> mapT (fillBFS e) (replacementsFor h)
replacementsFor :: Expr -> [[Expr]]
replacementsFor h = filterT (\e -> typ e == typ h)
$ primitiveApplications primitives
-- hardcoded filtering rules
keepIf :: Expr -> Bool
keepIf (Value "if" _ :$ ep :$ ex :$ ey)
| ex == ey = False
| anormal ep = False
| otherwise = case binding ep of
Just (v,e) -> v `notElem` values ex
Nothing -> True
where
anormal (Value "==" _ :$ e1 :$ e2) | isVar e2 || isConst e1 = True
anormal _ = False
binding :: Expr -> Maybe (Expr,Expr)
binding (Value "==" _ :$ e1 :$ e2) | isVar e1 = Just (e1,e2)
| isVar e2 = Just (e2,e1)
binding _ = Nothing
keepIf _ = error "Conjure.Engine.keepIf: not an if"
--- normality checks ---
isRootNormal :: Thy -> Expr -> Bool
isRootNormal thy e = null $ T.lookup e trie
where
trie = T.fromList (rules thy)
isRootNormalE :: Thy -> Expr -> Bool
isRootNormalE thy e = isRootNormal thy e
&& null (filter (e ->-) [e2 //- bs | (_,bs,e2) <- T.lookup e trie])
where
trie = T.fromList $ equations thy ++ map swap (equations thy)
(->-) = canReduceTo thy
--- tiers utils ---
productsWith :: ([a] -> a) -> [ [[a]] ] -> [[a]]
productsWith f = mapT f . products
-- TODO: move to LeanCheck?
delayedProductsWith :: ([a] -> a) -> [ [[a]] ] -> [[a]]
delayedProductsWith f xsss = productsWith f xsss `addWeight` length xsss
-- TODO: move to LeanCheck?
foldAppProducts :: Expr -> [ [[Expr]] ] -> [[Expr]]
foldAppProducts ef = delayedProductsWith (foldApp . (ef:))