aseba icon indicating copy to clipboard operation
aseba copied to clipboard

Ambiguous native function descriptions

Open ypiguet-epfl opened this issue 6 years ago • 4 comments

In the function descriptions in aseba/native.c, the role of arguments isn't always stated clearly. For instance for math.add, the description reads adds src1 and src2 to dest, element by element while the element-wise sum of src1 and src2 is stored into dest, not added to dest.

Suggestion: revise all native function descriptions, and store them in programming documentation, neither in the vm nor elsewhere in the robot firmware.

ypiguet-epfl avatar May 17 '18 08:05 ypiguet-epfl

The description in the vm are small reminder to have them dynamically listed. A more detail description is in the help of the asebastudio. It is also now in https://github.com/aseba-community/aseba/blob/master/docs/en/aseba-std-natives.rst that could be included in helps of different programms. I agree that the vm description is perhaps ambiguous but it has to be short.

mbonani avatar May 17 '18 15:05 mbonani

I just read the function description display in studio. I just found math.add that is not crystal clear: "adds src1 and src2 to dest, element by element" -> probably the function should been have called math.sum. There is two possibilities:

  • we change the name to math.sum, but it could break users code
  • we change only the description to "adds src1 and src2, store to dest, element by element"

mbonani avatar Jun 04 '18 12:06 mbonani

Sum is a bad name here because it is commonly assumed to mean "sum all elements together". What about: "adds src1 and src2, write to dest, element by element"

stephanemagnenat avatar Jun 04 '18 12:06 stephanemagnenat

for me it's ok

mbonani avatar Jun 04 '18 12:06 mbonani