array-forth-0.2.0.3: A simple interpreter for arrayForth, the language used on GreenArrays chips.

Safe HaskellNone

Language.ArrayForth.Synthesis

Synopsis

Documentation

evaluate :: Program -> [State] -> Distance -> Program -> DoubleSource

Given a specification program and some inputs, evaluate a program against the specification for both performance and correctness.

defaultOps :: Distr InstructionSource

The default distribution of instructions. For now, we do not support any sort of jumps. All the other possible instructions along with constant numbers and unused slots are equally likely. The numeric value of constants is currently a uniform distribution over 18-bit words.

defaultMutations :: Mutation ProgramSource

The default mutations to try. For now, this will either change an instruction or swap two instructions in the program, with equal probability.