We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need a function
const System& Function::domain()
that generates the set of inequalities corresponding to the definition domain of the function.
The text was updated successfully, but these errors were encountered:
Implement #456
ecb264a
Implement #456 (now ok)
2a6be94
Example of use:
Function f("x","y","ln(x)+sqrt(x+y)"); const System& sys=f.def_domain(); cout << sys << endl;
Prints:
x>=0 (x+y)>=0
Sorry, something went wrong.
Implement #456 (test update)
937023b
gchabert
No branches or pull requests
We need a function
const System& Function::domain()
that generates the set of inequalities corresponding to the definition domain of the function.
The text was updated successfully, but these errors were encountered: