Changed from model to matrix

This commit is contained in:
Brandon Rozek 2025-12-09 10:26:15 -05:00
parent 2fbdf26274
commit 18c2bcb673
3 changed files with 5 additions and 5 deletions

4
vsp.py
View file

@ -21,8 +21,8 @@ class VSP_Result:
def __str__(self):
if not self.has_vsp:
return f"Model {self.model_name} does not have the variable sharing property."
return f"""Model {self.model_name} has the variable sharing property.
return f"Matrix {self.model_name} does not have the variable sharing property."
return f"""Matrix {self.model_name} has the variable sharing property.
Subalgebra 1: {set_to_str(self.subalgebra1)}
Subalgebra 2: {set_to_str(self.subalgebra2)}
"""