-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerator.py
23 lines (18 loc) · 927 Bytes
/
generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from typing import List, Type
from mathgap.trees.generators.stoppingcriteria import Criterion
from mathgap.trees.prooftree import ProofTree
from mathgap.trees.rules import InferenceRule
class Generator:
def __init__(self, start_types: List[Type], inference_rules: List[InferenceRule], stopping_criterion: Criterion) -> None:
"""
Generates a proof tree according to some specification, which includes:
- start_types: list of logicalform-types that the tree is allowed to start with
- inference_rules: the set of inference rules that can be applied
- stopping_criterion: when should the generation be stopped
"""
self.start_types = start_types
self.inference_rules = inference_rules
self.stopping_criterion = stopping_criterion
def generate(self, seed:int = 14) -> ProofTree:
""" Generates a proof tree """
...