displaying some set members

Hello everyone !

I am trying to write in the log the names of the sets on which I am looping.

set1 /a,b,c/

loop(set1,

display ??
);

Do you have an idea to write a set member (a,b and c in this case) ?

thank you !


To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.

Hi Jacques

I assume you want in your listing the set element shown for every loop.

Here I do it using a dynamic set

set set1 /a,b,c/

setloop(set1);



loop(set1,

setloop(set1) = YES;

display setloop;

setloop(set1) = NO;

);

Renger



From: gamsworld@googlegroups.com [mailto:gamsworld@googlegroups.com] On Behalf Of Jacques
Sent: Friday, January 31, 2014 4:03 PM
To: gamsworld@googlegroups.com
Subject: displaying some set members



Hello everyone !

I am trying to write in the log the names of the sets on which I am looping.

set1 /a,b,c/

loop(set1,

display ??
);

Do you have an idea to write a set member (a,b and c in this case) ?

thank you !


To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.


To unsubscribe from this group and stop receiving emails from it, send an email to gamsworld+unsubscribe@googlegroups.com.
To post to this group, send email to gamsworld@googlegroups.com.
Visit this group at http://groups.google.com/group/gamsworld.
For more options, visit https://groups.google.com/groups/opt_out.