Overview
Comment:*** empty log message ***
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 372705fc1a43fdd67dc53484d26e56a208090e93297cbb4041af2cbdb42ce58c
User & Date: geraint@users.sourceforge.net on 2003-02-12 01:28:27
Other Links: branch diff | manifest | tags
Context
2003-02-13
11:57:35
Now sets default data style (lines) at initialisation so that it can be
changed by the user using "set data style dots", etc. at the command line.
check-in: 9fb405bd8e user: geraint@users.sourceforge.net tags: origin/master, trunk
2003-02-12
01:28:27
*** empty log message *** check-in: 372705fc1a user: geraint@users.sourceforge.net tags: origin/master, trunk
01:13:07
*** empty log message *** check-in: 34dec6dd16 user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/m/ibg2abg.m from [6028ae21c4] to [09d41ba2be].

370
371
372
373
374
375
376
377

378
379
380
381
382
383
384
	  ## find attached port
	  matched = 0;
	  
	  for [comp2, comp_or_port2] = comp_S
	    for [that, that_name] = comp2
	      for [other_port, other_port_name] = that.ports
				
		if (strcmp(port.name, other_port.name)) 

		  ## found a match ... check it is unique ...
		  if (matched == 1)
		    E = "Multiple matching vector ports: %s matches %s";
		    mtt_error(sprintf(E, port.name, other_port.name),
			      errorfile);
		  else
		    matched = 1;







|
>







370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
	  ## find attached port
	  matched = 0;
	  
	  for [comp2, comp_or_port2] = comp_S
	    for [that, that_name] = comp2
	      for [other_port, other_port_name] = that.ports
				
		if (strcmp(port_name, other_port_name)
		    && (this.index != that.index)) 
		  ## found a match ... check it is unique ...
		  if (matched == 1)
		    E = "Multiple matching vector ports: %s matches %s";
		    mtt_error(sprintf(E, port.name, other_port.name),
			      errorfile);
		  else
		    matched = 1;


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]