Skip site navigation (1)Skip section navigation (2)

  
 
  

home | help
GENLIB_UN...N_LOFIG.3(October 1, 1997)	  GENLIB_UN...N_LOFIG.3(October 1, 1997)

NAME
     UNFLATTEN_LOFIG  -  creates a hierarchy level from instances in the current
     logical figure

SYNOPSIS
     #include <genlib.h>
     void GENLIB_UNFLATTEN_LOFIG(figurename, instancename, list_of_instances, 0)
     char *figurename;
     char *instancename;
     char *list_of_instances;

PARAMETERS
     figurename 	 Name of the figure of the new hierarchy to be created

     instancename	 Name to be given at  the  instantiation  of  figurename
			 into the current structual figure

     list_of_instances	 List  of  strings  representing the instances to be in-
			 serted into the new figure

DESCRIPTION
     UNFLATTEN_LOFIG creates a new level of hierarchy, whose model name will  be
     figurename,  and  instantiate it under the name instancename in the current
     figure.  The instances whose name belong to the  list_of_instances  parame-
     ters are added in the new figure, and destroyed from the current figure.

EXAMPLE
     #include <genlib.h>
     main()
     {
	  /* Create a figure to work on  */
	  GENLIB_DEF_LOFIG("mycell");
	  .
	  .
	  .
	  /* Place an instance */
	  GENLIB_LOINS("model","instance", "sig1", "sig2", EOL);
	  /* flatten an instance */
	  GENLIB_UNFLATTEN_LOFIG("newfig", "newins", "instance", ..., 0);
	  /* Save all that on disk */
	  GENLIB_SAVE_LOFIG();
     }

SEE ALSO
     genlib(1), GENLIB_FLATTEN_LOFIG(3).

PROCEDURAL GENERATION LANGUAGE	    ASIM/LGENLIB_UN...N_LOFIG.3(October 1, 1997)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=GENLIB_UNFLATTEN_LOFIG&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help