Skip to content
Snippets Groups Projects
Commit 334b712b authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Start with some files

parent 73e18588
No related branches found
No related tags found
No related merge requests found
package leon
package synthesis
case class Problem();
package leon
package synthesis
/** AST definitions for Pure Scala. */
object Rules {
abstract class Rule {
def isApplicable(p: Problem): Option[Step];
}
}
package leon
package synthesis
case class Solution();
package leon
package synthesis
case class Step(subProblems: List[Problem], construct: List[Solution] => Solution, score: Score);
package leon
package object synthesis {
type Score = Int
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment