2023-10-12 17:51:03 +02:00
|
|
|
|
|
|
|
"""
|
2024-05-24 19:20:59 +02:00
|
|
|
AbstractModel
|
2023-10-12 17:51:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
"""
|
2024-05-24 19:20:59 +02:00
|
|
|
abstract type AbstractModel end
|
2023-10-12 17:51:03 +02:00
|
|
|
|
|
|
|
"""
|
2024-05-24 19:20:59 +02:00
|
|
|
AbstractProblemInstance
|
2023-10-12 17:51:03 +02:00
|
|
|
|
|
|
|
Base type for process descriptions. An object of this type of a corresponding [`AbstractPhysicsModel`](@ref) should uniquely identify a process in that model.
|
|
|
|
|
|
|
|
See also: [`parse_process`](@ref)
|
|
|
|
"""
|
2024-05-24 19:20:59 +02:00
|
|
|
abstract type AbstractProblemInstance end
|