You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-u", "--unfiltered", help="Causes SSM GUI Misbehaviour and TWA visibility flags to be set to true.", action="store_true")
2027
+
parser.add_argument("-u", "--unfiltered", help="Causes SSM GUI Misbehaviour and TWA visibility flags to be set to true, construction state flags to false.", action="store_true")
2028
2028
parser.add_argument("-e", "--expanded", help="Add population model support by expanding relevant structures", action="store_true")
2029
2029
parser.add_argument("-v", "--version", help="Set the versionInfo string (defaults to timestamp) '-unfiltered' will be added to the version string if '-u' is used.")
2030
2030
parser.add_argument("-n", "--name", help="Set the domainGraph string (defaults to what is found in DomainModel.csv). '-unexpanded' will be appended for population models unless '-e' is used.")
2031
2031
raw=parser.parse_args()
2032
2032
args=vars(raw)
2033
2033
2034
2034
if(raw.unfiltered):
2035
-
print("Misbehaviour and TWA visibility flags set to TRUE")
2035
+
print("Misbehaviour and TWA visibility flags set to TRUE, construction state flags to false")
2036
2036
else:
2037
2037
print("Misbehaviour and TWA visibility flags use domain model specifications")
0 commit comments