moved models to separate folder

This commit is contained in:
Josh Burman
2021-09-04 23:50:22 -04:00
parent 1b7c56ac3e
commit c4fdd68af2
9 changed files with 84 additions and 58 deletions

View File

@ -0,0 +1,12 @@
from pydantic import BaseModel
from typing import List, Optional, Dict
class AdvancedOptions(BaseModel):
# will supported currently
linearity_check: bool
show_progress: bool
max_solution_time: Optional[int]
brand_bound_tolerance: Optional[float]
max_forms: Optional[int]
precision: Optional[float]
extra_param_range: Optional[List[Dict]]