HTCondor Project List Archives



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-devel] [Fwd: Re: New Classad difference -- do bools promote to integers?]




RANK = (Owner == "coltrane") + (Owner == "tyner")

But this will cause EvalFloat() to choke:

RANK = (Owner == "coltrane")

Oooh, so

RANK = (Owner == "coltrane") + 0

will work?  It's like programming in Java all over again.

-greg