|
nuXmv API 126f6942
API for nuXmv
|
Functions for getting Properties from a Model. More...

Functions | |
| int | nuxmv_model_get_property_num (nuxmv_env env, nuxmv_model model) |
| Get the number of properties in a model. | |
| nuxmv_property | nuxmv_model_get_property (nuxmv_env env, nuxmv_model model, int prop_idx) |
| Get the i-th property of a model. | |
| nuxmv_property | nuxmv_model_get_property_by_name (nuxmv_env env, nuxmv_model model, const char *name) |
| Get the property of a model by name. | |
Functions for getting Properties from a Model.
| nuxmv_property nuxmv_model_get_property | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | prop_idx | ||
| ) |
Get the i-th property of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | prop_idx | The index of the property counting from 0. |
false.Requirements: 03.004.02
| nuxmv_property nuxmv_model_get_property_by_name | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| const char * | name | ||
| ) |
Get the property of a model by name.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | name | The name of the property. |
false.Requirements: 03.004.02
| int nuxmv_model_get_property_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of properties in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the property number from. |
-1 in case of error.Requirements: 03.004.02