FUNCTION acyclic_surface_replica
(* SCHEMA process_planning_schema; *)
FUNCTION acyclic_surface_replica(
rep: surface_replica;
parent: surface
): BOOLEAN;
IF NOT ('PROCESS_PLANNING_SCHEMA.SURFACE_REPLICA' IN TYPEOF(parent))
THEN
RETURN(TRUE);
END_IF;
IF parent :=: rep THEN
RETURN(FALSE);
ELSE
RETURN(acyclic_surface_replica(rep,parent\surface_replica.
parent_surface));
END_IF;
END_FUNCTION; -- acyclic_surface_replica
Referenced By
Defintion acyclic_surface_replica is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:19:47-04:00