solve(x/sqrt(x+2)=1,x)



Leo Butler wrote:
> On Thu, 29 Oct 2009, Barton Willis wrote:
>
> < Stavros,
> < 
> < Sorry for wasted time. One thing I'll do that might help: I'll change the
> < deprecated topoly_solver.mac to load the non-deprecated to_poly_solver.
>  
> For future reference, 'grep' will find what you want, even with a small
> amount of information about the name of the function:
>
> $ time grep -r -e '_*poly_*sol.\+\?(.\+\?) *:=' .
>   
While it helps, it's certainly not a very appealing way to find
something.  And you're still left with figuring out what to load, if
there are many files in the that directory.

We need something more simpler.  One way is use mk:defsystem, since we
use that in many places already and is supported on all of the lisps we
use.  That helps with the loading, and could help with finding the
packages since there would be a system file for each package which we
could find.

Ray