From help-octave-request at bevo dot che dot wisc dot edu Sat Nov 25 03:39:54 2000 Subject: Re: Linear Programing From: g940100 at m dot ecc dot u-tokyo dot ac dot jp To: help-octave at bevo dot che dot wisc dot edu Date: Sat, 25 Nov 2000 18:39:44 +0900 (JST) Hello all, Finally I succeeded installing 'semidef', and I found the cause of the error. The makefile has a minor bug. =========semidef-oct/SRC/MAKEFILE L.15=========== SP_DEP= sp.cc get_matrix.o get_real_scalar.o get_vector.o sp_src.c \ dgels.f dopgtr.f dspgv.f dsptrd.f lse.f \ dlansp.f dpptrf.f dspmv.f dtpmv.f lce.f \ dlantr.f dspev.f dspr.f dtpsv.f lde.f \ dlatrs.f dspgst.f dspr2.f dtrcon.f ================================================== should be changed into ================================================== SP_DEP= sp.cc get_matrix.o get_real_scalar.o get_vector.o sp_src.c \ dgels.f dopgtr.f dspgv.f dsptrd.f lse.f \ dlansp.f dpptrf.f dspmv.f dtpmv.f lce.f \ dlantr.f dspev.f dspr.f dtpsv.f lde.f \ dlatrs.f dspgst.f dspr2.f dtrcon.f dtrsv.f ================================================== I added "dtrsv.f" to makefile, and recompiled, and then it worked well. But I couldn't find the cause why version 2.0 did not worked well. Anyway, Thank you all!!! ---------------------------------- Tomoaki Yamauchi g940100 at mail dot ecc dot u-tokyo dot ac dot jp University of Tokyo, Japan ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------