addlomodel - create a tempotary logical model and add it to a list
This software belongs to the ALLIANCE CAD system from the CAO-VLSI team at
ASIM/LIP6/UPMC laboratory.
LIP6/ASIM
University P. et M. Curie
4, place Jussieu
75252 PARIS Cedex 05
FRANCE
Fax : {33/0} 1.44.27.62.86
E-mail support : alliance-support@asim.lip6.fr
#include mlo404.h"
lofig_list *addlomodel(model, name)
lofig_list *model;
char *name;
addlomodel creates a new lofig_list element and adds it to the front of the list pointed to by model, and becomes itself the list head. The addlomodel function is mosty used to create a temporary list of lofig in order to represent the in file instances' models. In fact, all the file format used with mbk have the notion of models local to files, so they are not figure, but are temporarly used to create instance connectors, for example. For details on the structure, see lofig(3) .
addlomodel returns a pointer to the new head of model list.
*** mbk error *** addlomodel impossible : model name already exists" The model, not the figure, is already present in the model list pointed to by model, and since a model should be unique, this can't be.
#include mut404.h"
#include mlo404.h"
void add_model(name)
char *name;
{
MODEL = addlomodel(MODEL, name);
}
mbk(1) , lofig(3) , getlomodel(3) , freelomodel(3) .
This tool is under development at the ASIM/LIP6/UPMC laboratory, cao-vlsi
research team.
We need your feedbak to improve documentation and tools.
If you find bugs, please fill-in the form at
http://asim.lip6.fr/alliance/support/bug-report/
Thanks for doing this.