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

Functions | |
| int | nuxmv_model_get_state_var_num (nuxmv_env env, nuxmv_model model) |
| Get the number of state variables in a model. | |
| nuxmv_var_decl | nuxmv_model_get_state_var (nuxmv_env env, nuxmv_model model, int var_idx) |
| Get the i-th state variable of a model. | |
| int | nuxmv_model_get_input_var_num (nuxmv_env env, nuxmv_model model) |
| Get the number of input variables in a model. | |
| nuxmv_var_decl | nuxmv_model_get_input_var (nuxmv_env env, nuxmv_model model, int var_idx) |
| Get the i-th input variable of a model. | |
| int | nuxmv_model_get_frozen_var_num (nuxmv_env env, nuxmv_model model) |
| Get the number of frozen variables in a model. | |
| nuxmv_var_decl | nuxmv_model_get_frozen_var (nuxmv_env env, nuxmv_model model, int var_idx) |
| Get the i-th frozen variable of a model. | |
| int | nuxmv_model_get_function_num (nuxmv_env env, nuxmv_model model) |
| Get the number of user-defined function declarations in a model. | |
| nuxmv_fun_decl | nuxmv_model_get_function (nuxmv_env env, nuxmv_model model, int fun_idx) |
| Get the i-th user-defined function declaration of a model. | |
| int | nuxmv_model_get_init_num (nuxmv_env env, nuxmv_model model) |
| Get the number of initial constraints in a model. | |
| nuxmv_expr | nuxmv_model_get_init (nuxmv_env env, nuxmv_model model, int init_idx) |
| Get the i-th initial constraint of a model. | |
| int | nuxmv_model_get_trans_num (nuxmv_env env, nuxmv_model model) |
| Get the number of transition constraints in a model. | |
| nuxmv_expr | nuxmv_model_get_trans (nuxmv_env env, nuxmv_model model, int trans_idx) |
| Get the i-th transition constraint of a model. | |
| int | nuxmv_model_get_invar_num (nuxmv_env env, nuxmv_model model) |
| Get the number of invariant constraints in a model. | |
| nuxmv_expr | nuxmv_model_get_invar (nuxmv_env env, nuxmv_model model, int invar_idx) |
| Get the i-th invariant constraint of a model. | |
| int | nuxmv_model_get_justice_num (nuxmv_env env, nuxmv_model model) |
| Get the number of justice constraints in a model. | |
| nuxmv_expr | nuxmv_model_get_justice (nuxmv_env env, nuxmv_model model, int just_idx) |
| Get the i-th justice constraint of a model. | |
| int | nuxmv_model_get_compassion_num (nuxmv_env env, nuxmv_model model) |
| Get the number of compassions in a model. | |
| nuxmv_compassion | nuxmv_model_get_compassion (nuxmv_env env, nuxmv_model model, int comp_idx) |
| Get the i-th compassion of a model. | |
| int | nuxmv_model_get_define_num (nuxmv_env env, nuxmv_model model) |
| Get the number of define declarations in a model. | |
| nuxmv_define_decl | nuxmv_model_get_define (nuxmv_env env, nuxmv_model model, int def_idx) |
| Get the i-th define declaration of a model. | |
Functions for getting Variables from a Model.
| nuxmv_compassion nuxmv_model_get_compassion | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | comp_idx | ||
| ) |
Get the i-th compassion of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | comp_idx | The index of the compassion counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_compassion_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of compassions in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the compassion number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_define_decl nuxmv_model_get_define | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | def_idx | ||
| ) |
Get the i-th define declaration of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | def_idx | The index of the define declaration counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_define_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of define declarations in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the define declaration number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_var_decl nuxmv_model_get_frozen_var | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | var_idx | ||
| ) |
Get the i-th frozen variable of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | var_idx | The index of the frozen variable counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_frozen_var_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of frozen variables in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the frozen variable number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_fun_decl nuxmv_model_get_function | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | fun_idx | ||
| ) |
Get the i-th user-defined function declaration of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | fun_idx | The index of the function declaration counting from 0. |
false.Requirements: ??
| int nuxmv_model_get_function_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of user-defined function declarations in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the function declaration number from. |
-1 in case of error.Requirements: ??
| nuxmv_expr nuxmv_model_get_init | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | init_idx | ||
| ) |
Get the i-th initial constraint of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | init_idx | The index of the initial constraint counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_init_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of initial constraints in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the initial constraint number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_var_decl nuxmv_model_get_input_var | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | var_idx | ||
| ) |
Get the i-th input variable of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | var_idx | The index of the input variable counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_input_var_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of input variables in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the input variable number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_expr nuxmv_model_get_invar | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | invar_idx | ||
| ) |
Get the i-th invariant constraint of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | invar_idx | The index of the invariant constraint counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_invar_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of invariant constraints in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the invariant constraint number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_expr nuxmv_model_get_justice | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | just_idx | ||
| ) |
Get the i-th justice constraint of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | just_idx | The index of the justice constraint counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_justice_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of justice constraints in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the justice constraint number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_var_decl nuxmv_model_get_state_var | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | var_idx | ||
| ) |
Get the i-th state variable of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | var_idx | The index of the state variable counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_state_var_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of state variables in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the state variable number from. |
-1 in case of error.Requirements: 03.004.02
| nuxmv_expr nuxmv_model_get_trans | ( | nuxmv_env | env, |
| nuxmv_model | model, | ||
| int | trans_idx | ||
| ) |
Get the i-th transition constraint of a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to inspect. |
| [in] | trans_idx | The index of the transition constraint counting from 0. |
false.Requirements: 03.004.02
| int nuxmv_model_get_trans_num | ( | nuxmv_env | env, |
| nuxmv_model | model | ||
| ) |
Get the number of transition constraints in a model.
| [in] | env | The environment to inspect. |
| [in] | model | The model to extract the transition constraint number from. |
-1 in case of error.Requirements: 03.004.02