Arithmetic operator precedence table incorrect

Description

The table shows 1 for / and 3 for %.  The program below shows that % binds before / because the value of the "p" expression matches the "x" expression.  The "y" expression shows the result of binding / first.

Rec := {UNSIGNED4 n, REAL8 x, REAL8 y, REAL8 p};
Rec draw(UNSIGNED c) := TRANSFORM
  SELF.x := ((RANDOM() % 1000000) / 100000000) - 0.005;
  SELF.y := (RANDOM() % (1000000 / 100000000)) - 0.005;
  SELF.p := RANDOM() % 1000000 / 100000000 - 0.005;
  SELF.n := c;
END;
v := DATASET(10000, draw(COUNTER));
t := TABLE(v, {avg_x:=AVE(GROUP,x), mn_x:=MIN(GROUP,x), mx_x:=MAX(GROUP,x),
    avg_y:=AVE(GROUP,y), mn_y:=MIN(GROUP,y), mx_y:=MAX(GROUP,y),
    avg_p:=AVE(GROUP,p), mn_p:=MIN(GROUP,p), mx_p:=MAX(GROUP,p)});
OUTPUT(t);

 

Conclusion

None

Activity

Show:

Gavin Halliday April 23, 2018 at 1:14 PM

"*" / % and DIV all have the same precedence, and are left associative.
+ and - have the same precedence and are left associative

 

 

 

Jim DeFabia April 18, 2018 at 1:07 PM

Where does DIV fit in ?

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Components

Assignee

Reporter

Priority

Compatibility

Minor

Fix versions

Created April 12, 2018 at 6:22 PM
Updated May 4, 2018 at 2:39 PM
Resolved May 4, 2018 at 2:39 PM