(* SCHEMA mathematical_functions_schema; *)
CONSTANT
schema_prefix : STRING := 'MATHEMATICAL_FUNCTIONS_SCHEMA.';
the_integers : elementary_space := make_elementary_space(es_integers);
the_reals : elementary_space := make_elementary_space(es_reals);
the_complex_numbers : elementary_space := make_elementary_space(es_complex_numbers);
the_numbers : elementary_space := make_elementary_space(es_numbers);
the_logicals : elementary_space := make_elementary_space(es_logicals);
the_booleans : elementary_space := make_elementary_space(es_booleans);
the_strings : elementary_space := make_elementary_space(es_strings);
the_binarys : elementary_space := make_elementary_space(es_binarys);
the_maths_spaces : elementary_space := make_elementary_space(es_maths_spaces);
the_generics : elementary_space := make_elementary_space(es_generics);
the_empty_space : finite_space := make_finite_space([]);
the_nonnegative_reals : real_interval_from_min :=
make_real_interval_from_min(0.0, closed);
the_zero_one_interval : finite_real_interval := make_finite_real_interval(
0.0, closed, 1.0, closed);
the_zero_pi_interval : finite_real_interval := make_finite_real_interval(
0.0, closed, pi, closed);
the_neg1_one_interval : finite_real_interval := make_finite_real_interval(
-1.0, closed, 1.0, closed);
the_neghalfpi_halfpi_interval : finite_real_interval := make_finite_real_interval(
-0.5*pi, closed, 0.5*pi, closed);
the_negpi_pi_interval : finite_real_interval := make_finite_real_interval(
-pi, open, pi, closed);
the_zero_tuple_space : listed_product_space := make_listed_product_space([]);
the_tuples : extended_tuple_space := make_extended_tuple_space(
the_zero_tuple_space, the_generics);
the_integer_tuples : extended_tuple_space := make_extended_tuple_space(
the_zero_tuple_space, the_integers);
the_real_tuples : extended_tuple_space := make_extended_tuple_space(
the_zero_tuple_space, the_reals);
the_complex_tuples : extended_tuple_space := make_extended_tuple_space(
the_zero_tuple_space, the_complex_numbers);
the_empty_maths_tuple : maths_tuple := [];
the_empty_maths_value : maths_value := the_empty_maths_tuple;
the_empty_atom_based_tuple : atom_based_tuple := [];
the_empty_atom_based_value : atom_based_value := the_empty_atom_based_tuple;
END_CONSTANT;
Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:13:59-04:00