Is there a way for the hash value to be compared within a range.  I
have tried to put the following in the csv table with no luck.

95..100,<=2.0,<=2.0,<=2,<=5,<=5,"output1"
90..94.99999,<=2.0,<=2.0,<=2,<=10,<=10,"output2"

>=95 && <100,<=2.0,<=2.0,<=2,<=5,<=5,"output1"
>=90 && <95,<=2.0,<=2.0,<=2,<=10,<=10,"output2"

My problem is that using the below hash gives the results "output4"
which is valid but not prefered. The "f1" needs to be within the
range.

decide({ "f1" => 92,
         "f2" => 4.1,
         "f3" => 0.9,
         "f4" => 0.8,
         "f5" => 5.1,
         "f6" => 5.2
      })

The original csv table I had is the following:

in:f1,in:f2,in:f3,in:f4,in:f5,in:f6,out:o

>=95,<=2.0,<=2.0,<=2,<=5,<=5,"output1"
>=90 & <95,<=2.0,<=2.0,<=2,<=10,<=10,"output2"
>=10 & <20,<=4.5,<=6.3,<=2,<=10,<=10,"output3"
>=10,<=4.5,<=6.3,<=2,<=10,<=10,"output4"


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"OpenWFEru users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/openwferu-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to