I have a set of nodes i and have created an alias (i,j). Now I have a parameter c(i,j) where I want i elements to be mapped to j distinctively. For example,
set i /a,b,c/ ;
alias (i,j) ;
c(i,j) /#i.#j/ ;
Dot operator maps all elements such as a.a, b.b, c.c, which I don't want to include. How do I write a condition such that only a.b, a.c, b.c are considered?
Thanks