-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow calculation between "incompatible types" by ce options #235
Comments
Thanks for the suggestion! |
Thanks for your reply! My previous statement may not be clear. I will give an example to illustrate. When I use symbols to calculate, for example, I now have two symbols const ce = new ComputeEngine()
ce.declare('a', 'number | list')
ce.declare('b', 'number | list') I want to calculate the (hadamard) product of const expr = ce.box(['Multiply', 'a', 'b']) Then I got a MathJSON like this: [
"Multiply",
[
"Error",
[
"ErrorCode",
"'incompatible-type'",
"'number'",
"'number | list'"
]
],
[
"Error",
[
"ErrorCode",
"'incompatible-type'",
"'number'",
"'number | list'"
]
]
] Even if I declare const boxed = ce.box(['Multiply', 2, ['List', 1, 2, 3, 4, 5]])
console.log(boxed.evaluate().toString())
// [2,4,6,8,10]
const boxed = ce.box(['Multiply', ['List', 1, 2, 3, 4, 5], ['List', 1, 2, 3, 4, 5]])
console.log(boxed.evaluate().toString())
// [1,4,9,16,25] So I need a way to disable type checking during parse symbol here, which may help me! |
Oh... I see. Actually, that's a bug. The type signature of the |
Thank you very much for following up on my issue |
Is your feature request related to a problem? Please describe.
I noticed that in the current version, collection types and numeric types are incompatible. This means that I cannot perform multiplication or addition on a collection. But in fact, such operations are possible and should not be defined as "incompatible".
In fact, this problem/request is very similar to #224 , but I have a simple transition way to solve.
Describe the solution you'd like
I hope that ce can provide an option to turn off type compatibility checking when it is initializing.
Describe alternatives you've considered
Another more elegant solution would be to make this operation type compatible. But this may be a huge amount of work.
I would be very grateful if you could add the options or solve this problem !!
The text was updated successfully, but these errors were encountered: