You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear ladnir,
I am working on implementing a program that receives two tables A and B as input and computes the sum per category. The input tables are of the following structure:
A:
key
cat
1
1
2
1
3
2
B:
key
val
1
10
2
20
3
5
In this example, the computed result should be the following table:
This is not yet finished. As you see, I want to perform a join operation and later sum op the values per category (not implemented yet).
Unfortunately, the last line is not reached, as I get an error on the previous line:
testing xtabs...
testing xtabs...
testing xtabs...
~~~~~~~~~~~~~~~~ Runtime not empty!!! ~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~ Runtime not empty!!! ~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~ Runtime not empty!!! ~~~~~~~~~~~~~~~~
std::bad_alloc
std::bad_array_new_length
std::bad_array_new_length
Do you have an idea why this error pops up? I have read the source code of aby3 but was unable to get to the root of the problem.
Best, Juri
The text was updated successfully, but these errors were encountered:
Dear ladnir,
I am working on implementing a program that receives two tables A and B as input and computes the sum per category. The input tables are of the following structure:
A:
B:
In this example, the computed result should be the following table:
C:
Currently, this is my code:
This is not yet finished. As you see, I want to perform a join operation and later sum op the values per category (not implemented yet).
Unfortunately, the last line is not reached, as I get an error on the previous line:
Do you have an idea why this error pops up? I have read the source code of aby3 but was unable to get to the root of the problem.
Best, Juri
The text was updated successfully, but these errors were encountered: