tchanged order according to speed - numeric - C++ library with numerical algorithms
 (HTM) git clone git://src.adamsgaard.dk/numeric
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit ec5f1491ca8bc1281cc5c61549bf6226753fe180
 (DIR) parent 5a9cff5d2c3330ff6abc15165b23c09102d040aa
 (HTM) Author: Anders Damsgaard Christensen <adc@geo.au.dk>
       Date:   Wed, 23 Jan 2013 09:55:16 +0100
       
       changed order according to speed
       
       Diffstat:
         M matrixmul/plot.gp                   |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/matrixmul/plot.gp b/matrixmul/plot.gp
       t@@ -6,17 +6,17 @@ set title "Matrix multiplication"
        #set log xy
        set grid
        set key outside
       -plot "lua-arrofarrs.dat" title "Lua: Arrays of arrays" w lp, \
       +plot \
                 "lua-linarr.dat" title "Lua: Linear arrays" w lp, \
       +         "lua-arrofarrs.dat" title "Lua: Arrays of arrays" w lp, \
                 "luajit-arrofarrs.dat" title "LuaJIT: Arrays of arrays" w lp, \
                 "luajit-linarr.dat" title "LuaJIT: Linear arrays" w lp, \
                 "c-arrofarrs.dat" title "C: Arrays of arrays" w lp, \
                 "c-linarr.dat" title "C: Linear arrays" w lp, \
       +         "cpp-vectorofvectors.dat" title "C++: Vectors of vectors" w lp, \
       +         "cpp-linvectors.dat" title "C++: Linear vectors" w lp, \
                 "c-omp-arrofarrs.dat" title "C-OpenMP: Arrays of arrays" w lp, \
                 "c-omp-linarr.dat" title "C-OpenMP: Linear arrays" w lp, \
       -         "c-gsl-cblas.dat" title "C: GSL CBLAS" w lp, \
                 "julia.dat" title "Julia" w lp, \
       -         "cpp-vectorofvectors.dat" title "C++: Vectors of vectors" w lp, \
       -         "cpp-linvectors.dat" title "C++: Linear vectors" w lp, \
       -         "python-numpy.dat" title "Python: Numpy" w lp, \
       +         "c-gsl-cblas.dat" title "C: GSL CBLAS" w lp, \
                 "octave.dat" title "Octave" w lp