ENTITY basic_sparse_matrix

(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
ENTITY basic_sparse_matrix
   SUBTYPE OF (explicit_table_function, multiple_arity_generic_expression);
      SELF\multiple_arity_generic_expression.operands : LIST [3:3] OF maths_function;
      default_entry : maths_value;
      order : ordering_type;
   DERIVE
      index : maths_function := SELF\multiple_arity_generic_expression.operands[1];
      loc : maths_function := SELF\multiple_arity_generic_expression.operands[2];
      val : maths_function := SELF\multiple_arity_generic_expression.operands[3];
   WHERE
      WR1:
         function_is_1d_table(index);
      WR2:
         function_is_1d_table(loc);
      WR3:
         function_is_1d_table(val);
      WR4:
         check_sparse_index_domain(index.domain, index_base, shape, order);
      WR5:
         check_sparse_index_to_loc(index.range, loc.domain);
      WR6:
         loc.domain = val.domain;
      WR7:
         check_sparse_loc_range(loc.range, index_base, shape, order);
      WR8:
         member_of(default_entry, val.range);
END_ENTITY;

Explicit Attributes

Entity basic_sparse_matrix has the following local and inherited explicit attributes:
AttributeTypeDefined By
 index_basezero_or_one (INTEGER)explicit_table_function
 shapeLIST OF positive_integer (INTEGER)explicit_table_function
 operandsLIST OF maths_function (ENTITY)basic_sparse_matrix(Redcl from multiple_arity_generic_expression)
 default_entrymaths_value (SELECT)basic_sparse_matrix
 orderordering_type (ENUM)basic_sparse_matrix

Derived Attributes

Entity basic_sparse_matrix has the following local and inherited derived attributes:
AttributeTypeDefined By
 domaintuple_space (SELECT)maths_function
 rangetuple_space (SELECT)maths_function
 indexmaths_function (ENTITY)basic_sparse_matrix
 locmaths_function (ENTITY)basic_sparse_matrix
 valmaths_function (ENTITY)basic_sparse_matrix

Inverse Attributes

    No Inverse Attributes

Supertypes

Entity basic_sparse_matrix inherits from the following supertypes:
  generic_expression
    maths_function
      explicit_table_function
  generic_expression
    multiple_arity_generic_expression

Subtypes

    No subtypes

Referenced By

Entity basic_sparse_matrix and its supertypes are referenced by the following definitions:
DefinitionTypeReferenced Entity
 abstracted_expression_function ENTITY multiple_arity_generic_expression
 abstracted_expression_function ENTITY generic_expression
 acyclic FUNCTION multiple_arity_generic_expression
 acyclic FUNCTION generic_expression
 all_members_of_es FUNCTION generic_expression
 banded_matrix ENTITY explicit_table_function
 basic_sparse_matrix ENTITY multiple_arity_generic_expression
 basic_sparse_matrix ENTITY maths_function
 binary_generic_expression ENTITY generic_expression
 b_spline_function ENTITY maths_function
 compare_basis_and_coef FUNCTION maths_function
 composable_sequence FUNCTION maths_function
 concat_expression ENTITY multiple_arity_generic_expression
 convert_to_maths_function FUNCTION maths_function
 convert_to_operand FUNCTION generic_expression
 convert_to_operands FUNCTION generic_expression
 convert_to_operands_prcmfn FUNCTION maths_function
 convert_to_operands_prcmfn FUNCTION generic_expression
 definite_integral_expression ENTITY multiple_arity_generic_expression
 definite_integral_expression ENTITY generic_expression
 definite_integral_expr_check FUNCTION generic_expression
 definite_integral_function ENTITY maths_function
 derive_function_domain FUNCTION explicit_table_function
 derive_function_domain FUNCTION maths_function
 derive_function_range FUNCTION maths_function
 derive_function_range FUNCTION basic_sparse_matrix
 derive_function_range FUNCTION explicit_table_function
 domain_from FUNCTION maths_function
 equal_maths_functions FUNCTION maths_function
 explicit_table_function ENTITY basic_sparse_matrix
 expression_denoted_function ENTITY generic_expression
 expression_is_constant FUNCTION generic_expression
 extremal_position_check FUNCTION explicit_table_function
 format_function ENTITY generic_expression
 free_variables_of FUNCTION generic_expression
 free_variables_of FUNCTION multiple_arity_generic_expression
 function_applicability FUNCTION generic_expression
 function_application ENTITY multiple_arity_generic_expression
 function_application ENTITY generic_expression
 function_is_1d_array FUNCTION maths_function
 function_is_1d_table FUNCTION maths_function
 function_is_2d_table FUNCTION maths_function
 function_is_array FUNCTION maths_function
 function_is_table FUNCTION maths_function
 general_linear_function ENTITY maths_function
 generic_expression ENTITY multiple_arity_generic_expression
 has_values_space FUNCTION generic_expression
 homogeneous_linear_function ENTITY maths_function
 index_expression ENTITY generic_expression
 interval_expression ENTITY generic_expression
 interval_expression ENTITY multiple_arity_generic_expression
 is_acyclic FUNCTION generic_expression
 linearized_table_function ENTITY maths_function
 listed_complex_number_data ENTITY explicit_table_function
 listed_data ENTITY explicit_table_function
 listed_integer_data ENTITY explicit_table_function
 listed_logical_data ENTITY explicit_table_function
 listed_real_data ENTITY explicit_table_function
 listed_string_data ENTITY explicit_table_function
 make_atom_based_literal FUNCTION generic_expression
 make_binary_literal FUNCTION generic_expression
 make_boolean_literal FUNCTION generic_expression
 make_cartesian_complex_number_region FUNCTION generic_expression
 make_complex_number_literal FUNCTION generic_expression
 make_elementary_function FUNCTION generic_expression
 make_elementary_function FUNCTION maths_function
 make_elementary_space FUNCTION generic_expression
 make_extended_tuple_space FUNCTION generic_expression
 make_finite_integer_interval FUNCTION generic_expression
 make_finite_real_interval FUNCTION generic_expression
 make_finite_space FUNCTION generic_expression
 make_function_application FUNCTION generic_expression
 make_function_application FUNCTION multiple_arity_generic_expression
 make_function_space FUNCTION generic_expression
 make_int_literal FUNCTION generic_expression
 make_listed_product_space FUNCTION generic_expression
 make_logical_literal FUNCTION generic_expression
 make_maths_enum_literal FUNCTION generic_expression
 make_maths_tuple_literal FUNCTION generic_expression
 make_parallel_composed_function FUNCTION generic_expression
 make_parallel_composed_function FUNCTION multiple_arity_generic_expression
 make_parallel_composed_function FUNCTION maths_function
 make_polar_complex_number_region FUNCTION generic_expression
 make_real_interval_from_min FUNCTION generic_expression
 make_real_interval_to_max FUNCTION generic_expression
 make_real_literal FUNCTION generic_expression
 make_string_literal FUNCTION generic_expression
 make_uniform_product_space FUNCTION generic_expression
 maths_expression SELECT generic_expression
 maths_function ENTITY explicit_table_function
 maths_function_select SELECT maths_function
 maths_space_or_function SELECT maths_function
 maths_value SELECT generic_expression
 member_of FUNCTION maths_function
 multiple_arity_boolean_expression ENTITY multiple_arity_generic_expression
 multiple_arity_generic_expression ENTITY generic_expression
 multiple_arity_numeric_expression ENTITY multiple_arity_generic_expression
 no_cyclic_domain_reference FUNCTION maths_function
 parallel_composed_function ENTITY multiple_arity_generic_expression
 parallel_composed_function ENTITY maths_function
 parallel_composed_function ENTITY generic_expression
 parallel_composed_function_composability_check FUNCTION maths_function
 parallel_composed_function_domain_check FUNCTION maths_function
 partial_derivative_expression ENTITY generic_expression
 partial_derivative_function ENTITY maths_function
 quantifier_expression ENTITY multiple_arity_generic_expression
 rationalize_function ENTITY maths_function
 regular_table_function ENTITY explicit_table_function
 reindexed_array_function ENTITY maths_function
 repackaging_function ENTITY maths_function
 series_composed_function ENTITY maths_function
 series_composed_function ENTITY multiple_arity_generic_expression
 shape_of_array FUNCTION explicit_table_function
 shape_of_array FUNCTION maths_function
 simplify_function_application FUNCTION generic_expression
 simplify_generic_expression FUNCTION generic_expression
 simplify_generic_expression FUNCTION multiple_arity_generic_expression
 substitute FUNCTION maths_function
 substitute FUNCTION multiple_arity_generic_expression
 substitute FUNCTION generic_expression
 substring_expression ENTITY multiple_arity_generic_expression
 substring_expression ENTITY generic_expression
 symmetric_matrix ENTITY explicit_table_function
 triangular_matrix ENTITY maths_function
 triangular_matrix ENTITY explicit_table_function
 unary_generic_expression ENTITY generic_expression
 used_variables FUNCTION multiple_arity_generic_expression
 used_variables FUNCTION generic_expression
 validate_dependently_instantiable_entity_data_types RULE generic_expression
 validate_dependently_instantiable_entity_data_types RULE multiple_arity_generic_expression
 values_space_of FUNCTION generic_expression
 values_space_of FUNCTION maths_function


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-12-22T16:32:01-05:00