[comp.lsi] syntax for literals in nutmeg

daasch@eecs.cs.pdx.edu (Robert Daasch) (06/11/91)

Simple question:

When running nutmeg as a postprocessor for SPICE3,
how do I enter a vector of literals?

The nutmeg man page says it is,

	let a = [literal1 literal2...]

Here is what I get on a SPARC, no apparent troubles during
the build, doing this;

Spice 159 ->let a = [5 4 3 2 1] 
Syntax Error.

or this, 

Spice 160 ->let a = [5, 4, 3, 2, 1] 
Syntax Error.

Escaping the ']' yields,

Spice 161 ->let a = "[5, 4, 3, 2, 1]" 
Error: [5, 4, 3, 2, 1]: no such vector.

Simple question #2: In nutmeg, can you specify a vector 
element, e.g. x[3], on the left hand side of an assignment ('let')?

Regards,
Rob D.