*** empty log message ***
This commit is contained in:
parent
e4937a41f0
commit
c7846f2319
@ -1,3 +1,11 @@
|
||||
11.06.2020 Nested commutators and Hausdorff formula applied to a ket vector using only matrix*vector operation
|
||||
10.06.2020 File IO for bitvector
|
||||
08.06.2020 Trick to access real and imag part of complex as l-value (pointer to real)
|
||||
12.01.2020 RELEASE 0.10
|
||||
06.01.2020 minor fix in multiply_by_inverse
|
||||
05.01.2020 quaternions and lightweight 3-dim vector and matrix class, compatible but independent from the remainder of LA, to be usable also on MCUs
|
||||
30.12.2019 removed #define complex
|
||||
13.11.2019 RELEASE 0.9
|
||||
12.11.2019 fourindex_dense with nosymetry implemented
|
||||
12.11.2019 fourindex.cc created for template specializations
|
||||
12.11.2019 fourindex optional scaling and terminator
|
||||
|
@ -1,6 +1,6 @@
|
||||
lib_LTLIBRARIES = libla.la
|
||||
include_HEADERS = fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h csrmat.h conjgrad.h gmres.h matexp.h permutation.h
|
||||
libla_la_SOURCES = vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc csrmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc fourindex.cc
|
||||
include_HEADERS = vecmat3.h quaternion.h fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h csrmat.h conjgrad.h gmres.h matexp.h permutation.h
|
||||
libla_la_SOURCES = quaternion.cc vecmat3.cc vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc csrmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc fourindex.cc
|
||||
check_PROGRAMS = t test
|
||||
t_SOURCES = t.cc t2.cc
|
||||
test_SOURCES = test.cc
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ([2.63])
|
||||
AC_INIT([libla], [0.8], [jiri@pittnerovi.com])
|
||||
AC_INIT([libla], [0.10], [jiri@pittnerovi.com])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AM_PROG_AR
|
||||
|
Loading…
Reference in New Issue
Block a user