1on modular;
2setmod 2;
3% The following input caused nil to be called as function
4sqrt(1-x^2);
5
6% another error...
7setmod 11;
8off precise;
9sqrt(10*(x^2+10));
10
11% Check that domain mode is reset during definite integration
12
13int(sqrt(1-x^2),x,0,1);
14
15int(sqrt(10*(x^2+10)),x,0,1);
16
17end;
18