You can find all the Singular related files installed on your system by
Code:
locate -i Singular.
Note that the command
Quote:
dpkg -i singular-release.deb
will not put the source on your system. You will have to download and install the source separately from:
http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/.
If you want to run a Singular code through a 'C' program, then here is my small suggestion:
Code:
your_c_code
myfile = generate_.sing_file
char str[256];
str=strcat("/usr/bin/Singular < ", myfile);
system(str);
remaining_c_code
I hope this solves your problem...
-- VInay