Changeset 30

Show
Ignore:
Timestamp:
07/12/07 11:26:15 (1 year ago)
Author:
pernet
Message:

Fix a bug

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • include/fflas-ffpack/ffpack.h

    r27 r30  
    856856                                typename Field::Element * X, const size_t ldx ){ 
    857857                for (size_t i=0; i<N; ++i) 
    858                         fcopy (F, N, L+i*ldl, 1, X+i*ldx, 1); 
     858                        fcopy (F, N, X+i*ldx, 1, L+i*ldl, 1); 
    859859                ftrtri (F, FflasLower, FflasUnit, N, X, ldx); 
    860860                //invL(F,N,L,ldl,X,ldx); 
  • tests/Makefile

    r14 r30  
    2525#---------------------------------------------------------- 
    2626 
     27LOADLIBES+=-L/home/cpernet/Logiciels/givaro-3.2.6/lib -lgivaro -lgmp 
     28 
    2729OPTFLAGS+=-O3 
    2830OPTFLAGS+=-g -Wall 
     
    3133CXXFLAGS+=${OPTFLAGS}  
    3234 
    33 INCLUDES+=-I. -I../include -I${BLASROOT}/../../include 
     35INCLUDES+=-I. -I../include -I${BLASROOT}/../../include -I/home/cpernet/Logiciels/givaro-3.2.6/include 
    3436 
    3537