I noticed when running in debug and testing the meta weighting we were
discussing yesterday that running this test:
meta KAM_TIME ((__KAM_TIME1 + ((__KAM_TIME2 + __KAM_TIME3
+ __KAM_TIME4 + __KAM_TIME5) / 2) + (__KAM_TIME6 * 1.5)) >= 2)
gives this error:
[1177] info: rules: meta test KAM_TIME has undefined dependency '1.5'
Changing to this works.
meta KAM_TIME ((__KAM_TIME1 + ((__KAM_TIME2 + __KAM_TIME3
+ __KAM_TIME4 + __KAM_TIME5) / 2) + (__KAM_TIME6 * (3/2))) >= 2)
Would this be considered expected behavior and something I should add to the
wiki as well or would it be considered a bug?
Regards,
KAM