Prev | Next | cpp_graph_vector |
size = graph_obj.discrete_name_vec_size()
size = graph_obj.atomic_name_vec_size()
size = graph_obj.print_text_vec_size()
size = graph_obj.constant_vec_size()
size = graph_obj.operator_vec_size()
size = graph_obj.operator_arg_size()
size = graph_obj.dependent_vec_size()
discrete_name = graph_obj.discrete_name_vec_get(index)
atomic_name = graph_obj.atomic_name_vec_get(index)
print_text = graph_obj.print_text_vec_get(index)
constant = graph_obj.constant_vec_get(index)
op_enum = graph_obj.operator_vec_get(index)
argument = graph_obj.operator_arg_get(index)
node_index = graph_obj.dependent_vec_get(index)
graph_obj.discrete_name_vec_push_back(discrete_name)
graph_obj.atomic_name_vec_push_back(atomic_name)
graph_obj.print_text_vec_push_back(print_text)
graph_obj.constant_vec_push_back(constant)
graph_obj.operator_vec_push_back(op_enum)
graph_obj.operator_arg_push_back(argument)
graph_obj.dependent_vec_push_back(node_index)
discrete_index = graph_obj.discrete_name_vec_find(discrete_name)
atomic_index = graph_obj.atomic_name_vec_find(atomic_name)
print_index = graph_obj.print_text_vec_find(print_text)
size_t
value equal to the current size of the specified vector.
size_t
value that must be less than the current size
of the specified vector.
cpp_graph
object.
It is const for the size, get, and find functions and
not const for the push_back functions.
std::string
equal to the name of a discrete
function.
std::string
equal to the name of an atomic_three
function.
std::string
equal to the text to be printed.
double
equal to the constant with the corresponding
index in constant_vec
.
size_t
value for corresponding operator argument.
discrete_name == graph_obj.discrete_name_vec_get(discrete_index)
If there is no such index,
discrete_index == graph_obj.discrete_name_vec_size()
atomic_name == graph_obj.atomic_name_vec_get(atomic_index)
If there is no such index,
atomic_index == graph_obj.atomic_name_vec_size()
print_text == graph_obj.print_text_vec_get(print_index)
If there is no such index,
print_index == graph_obj.print_text_vec_size()