#**************************************************************************
# * Copyright (C) 2023-present Bert Van Acker (B.MKR) <bva.bmkr@gmail.com>
# *
# * This file is part of the hybridIO project.
# *
# * HybridIO can not be copied and/or distributed without the express
# * permission of Bert Van Acker
# *************************************************************************
[docs]class OrchestrationType:
FMI_local = "FMI_LOCAL"
DISTRIBUTED = "DISTRIBUTED"
DISTRIBUTED_FIXED_IO = "DISTRIBUTED_FIXED_IO"
[docs]class ExecutionPatterns:
TRIGGERED = "TRIGGERED"
IPO = "IPO"
IOP = "IOP"
[docs]class VerificationMethods:
STATICLOWERBOUND = "StaticLowerBound"
STATICUPPERBOUND = "StaticUpperBound"
STATICBOUND = "StaticBound"
[docs]class MonitorType:
RUNTIME = "runtime"
POSTPROCESSING = "postprocessing"
[docs]class StepStatus:
PENDING = "Pending"
RUNNING = "Running"
PASSED = "Passed"
FAILED = "Failed"