mirror of
https://github.com/Brandon-Rozek/matmod.git
synced 2025-12-19 05:10:25 +00:00
Check models in parallel
This commit is contained in:
parent
fb074ff0e8
commit
aeb8ae0440
4 changed files with 26 additions and 14 deletions
|
|
@ -1,4 +1,7 @@
|
|||
from typing import Set
|
||||
|
||||
def immutable(_self, _name, _value):
|
||||
raise Exception("Model values are immutable")
|
||||
|
||||
def set_to_str(x: Set) -> str:
|
||||
return "{" + ", ".join((str(xi) for xi in x)) + "}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue