Hello there, How can I compile this? I used boundarycompiled := Compiler:-Compile(findboundary) but this didnt work. Thanks in advance
> findboundary:=proc(a,b,c,d,e,f,g,h) ;
> global A,B,lowerbound,upperbound;
> A, B := solve(a = b, x), solve(c = b, x);
> x1a, x1b := evalf(solve((x-e)^2+(a-f)^2-g^2)); if x1a < x1b then minx1, maxx1 := x1a, x1b else minx1, maxx1 := x1b, x1a end if;
> x2a, x2b := evalf(solve((x-e...