-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathChangeLog
2298 lines (1371 loc) · 56.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Version 2.1.7 December 17, 2024
- Updated documents (thanks to ChatGPT-4o).
Version 2.1.6 July 3, 2024
- Fixed a bug in lis_precon_saamg.c (thanks to Carlos Mendes).
Version 2.1.5 June 27, 2024
- Removed extra @shift in win\configure.bat (thanks to Carlos Mendes).
Version 2.1.4 May 8, 2024
- Changed COPYING to symbolic link to LICENSE (thanks to Ralf Greeve).
Version 2.1.3 June 14, 2023
- Fixed some bugs in source code (thanks to Thedore Chang).
Version 2.1.2 May 21, 2023
- Updated configurations for Intel LLVM C Compiler.
- Fixed errors in win/Makefile.in (thanks to K. Yamada).
- Fixed errors in user guides (thanks to K. Yamada).
Version 2.1.1 April 12, 2023
- Corrected errors on lis_array_ge() in documents (thanks to Ning Li).
- Corrected error on lis_array_ge_f() in include/lis_fortran.h (thanks to Ning Li).
Version 2.1.0 March 5, 2023
- Updated documents.
Version 2.0.35 February 21, 2023
- Fixed win/Makefile.in to include lisf_init.obj in lis.lib
without link error for Intel Fortran Compiler (thanks to ChatGPT).
Version 2.0.34 April 26, 2022
- Fixed win/Makefile.in to avoid link error with Intel Fortran Compiler (thanks to Yigang Gong).
Version 2.0.33 November 14, 2021
- Fixed include/lisf.h.in to avoid Fortran error.
- Updated win/Makefile.in to include lisf_init.obj in lis.lib.
Version 2.0.32 October 1, 2021
- Fixed type of lis_wtime() in user guides (thanks to Ning Li).
Version 2.0.31 September 24, 2021
- Updated include/lisf.h.in experimentally to remove dependency on lisf_init.F (thanks to Ning Li).
Version 2.0.30 January 23, 2021
- Added support for lis_esolver_get_specific_*() (thanks to Peter Vermeulen).
Version 2.0.29 December 28, 2020
- Fixed MPI related bug in configure.ac for macOS (thanks to Carlo de Falco).
Version 2.0.28 December 24, 2020
- Updated note on win32.mak in win/README.
- Added experimental support for Fujitsu A64FX and NEC SX-Aurora TSUBASA.
Version 2.0.27 December 3, 2020
- Added note on win32.mak to win/README (thanks to Zhengang Liu).
Version 2.0.26 November 25, 2020
- Added option --disable-test to configure.ac (thanks to Fabian Wein).
Version 2.0.25 November 18, 2020
- Updated configure.ac for Apple Clang (thanks to Fabian Wein).
Version 2.0.24 November 3, 2020
- Fixed bugs in lis_error.c and lis_esolver_si.c.
Version 2.0.23 August 26, 2020
- Fixed bug in lis_input_vector_mm().
Version 2.0.22 May 22, 2020
- Updated documents.
Version 2.0.21 March 18, 2020
- Fixed MPI related bug in test4f.F.
Version 2.0.20 September 4, 2019
- Disabled unimplemented conv_cond options for some linear solvers
(thanks to Kazuhiro Tada).
Version 2.0.19 May 22, 2019
- Applied Lis patch for K computer (thanks to Shun Ito).
Version 2.0.18 January 30, 2019
- Updated libtool to 2.4.6 (thanks to Martin Sjoelund).
- Updated documents (thanks to Danyang Su).
Version 2.0.17 October 26, 2018
- Updated documents (thanks to Yasuyo Hatano).
Version 2.0.16 September 26, 2018
- Disabled option '-f quad' when quad precision is not enabled (thanks to Konstantin).
Version 2.0.15 September 20, 2018
- Updated copyright notice (thanks to Konstantin).
Version 2.0.14 July 11, 2018
- Updated .gitignore (thanks to Oliver Evans).
Version 2.0.13 June 28, 2018
- Added OMPFLAGs to configurations for Intel MIC (thanks to Javier Bahamonde Amor).
Version 2.0.12 May 24, 2018
- Added test matrix testmat4.mtx in Matrix Market array format.
Version 2.0.11 April 26, 2018
- Fixed lis.h for compatibility with C++ (thanks to Michael Asam).
Version 2.0.10 April 12, 2018
- Updated graphics for complex eigenvalues.
Version 2.0.9 March 21, 2018
- Fixed configuration of win/Makefile.in for SAAMG (thanks to Jian Li).
Version 2.0.8 March 9, 2018
- Updated descriptions for test matrices.
Version 2.0.7 February 8, 2018
- Fixed matrix block size related bugs in spmvtest4 and spmvtest5
(thanks to Javier Bahamonde Amor).
Version 2.0.6 December 10, 2017
- Added complex test matrix testmat3.mtx.
- Updated print messages for Subspace, Lanczos, and Arnoldi iterations.
- Fixed bug in lisf.h.in.
Version 2.0.5 December 7, 2017
- Updated documents.
Version 2.0.4 November 18, 2017
- Fixed memory leak bugs related to option -rval.
Version 2.0.3 November 11, 2017
- Updated lis_matrix_destroy() to avoid conflict with deallocate() in
Fortran 90 (thanks to Ste'phane Glockner).
Version 2.0.2 November 6, 2017
- Changed name of function lis_matrix_shift_general() to lis_matrix_shift_matrix().
- Updated test8f.F90.
Version 2.0.1 November 5, 2017
- Added support for option -rval.
- Added support for graphics/gnuplot3b*.
- Fixed shift related bugs.
Version 2.0.0 November 1, 2017
- Added official support for linear solvers generalized for complex matrices.
- Added official support for nonsymmetric eigenproblems.
Version 1.8.15 November 1, 2017
- Fixed complex related bugs in BiCR.
Version 1.8.14 October 31, 2017
- Fixed bugs on complex arithmetic.
Version 1.8.13 October 30, 2017
- Fixed bugs in lis_input_mm.c.
Version 1.8.12 October 25, 2017
- Generalized linear solvers and preconditioners for complex matrices.
Version 1.8.11 October 18, 2017
- Fixed bug in lis_esolver_ai.c.
- Fixed bug in lis_array.c.
- Fixed description in etest7.c.
- Added support for Matrix Market array format.
Version 1.8.10 October 17, 2017
- Updated configurations in win/Makefile.in.
Version 1.8.9 October 11, 2017
- Updated configurations in win/Makefile.in for Microsoft MPI.
- Fixed SAAMG related configurations in win/Makefile.in.
Version 1.8.8 October 9, 2017
- Updated configurations in win/Makefile.in for Intel Compilers.
Version 1.8.7 October 4, 2017
- Fixed configure.ac to exclude complex.h by default (thanks to Fuyuki Saito).
- Fixed configurations in win/Makefile.in.
Version 1.8.6 September 24, 2017
- Fixed bug in win/Makefile.in (thanks to Jian Li).
- Added support for inputting imaginary shift for eigensolvers.
Version 1.8.5 September 14, 2017
- Updated documents.
Version 1.8.4 August 29, 2017
- Fixed documents.
Version 1.8.3 August 10, 2017
- Updated documents.
- Updated eigensolvers.
Version 1.8.2 August 6, 2017
- Added support for inputting complex vectors in Matrix Market format.
Version 1.8.1 August 4, 2017
- Fixed bug in lis_solver_sor.c.
- Changed names of flags -ssor_w and -hybrid_w to -ssor_omega and -hybrid_omega,
respectively.
Version 1.8.0 August 1, 2017
- Added official support for test/test3c.c for solving multiple-step linear equations.
Version 1.7.37 July 31, 2017
- Fixed MPI bug in test/test3c.c.
- Fixed bug in lis_solver_sor.c.
Version 1.7.36 July 27, 2017
- Fixed MPI memory leak bug in lis_matrix_assemble() (thanks to Danyang Su).
- Fixed lis_input_vector() related bug in test1.c (thanks to Danyang Su).
Version 1.7.35 July 26, 2017
- Fixed MPI memory leak bug in lis_matrix_assemble() (thanks to Danyang Su).
Version 1.7.34 July 17, 2017
- Fixed MPI bugs in lis_vector_gather() and lis_vector_scatter() (thanks to Danyang Su).
Version 1.7.33 June 11, 2017
- Added exception handling for inner linear solvers.
Version 1.7.32 June 10, 2017
- Fixed exception handling bug.
Version 1.7.31 June 7, 2017
- Fixed exception handling bug (thanks to Ralf Greve).
Version 1.7.30 May 31, 2017
- Added exception handlings for wrong parameter settings (thanks to Ralf Greve).
- Updated documents.
Version 1.7.29 March 22, 2017
- Added experimental support for test/test3c.c, which is an update of test/test4b.c
for solving multiple-step linear equations (thanks to Fabian Wein).
- Updated documents.
Version 1.7.28 March 12, 2017
- Added support for Intel MIC (thanks to Javier Bahamonde Amor).
- Updated documents.
Version 1.7.27 February 17, 2017
- Fixed matrix file format for lis_esolver_get_evectors() (thanks to Takahiro Okada).
- Updated documents.
Version 1.7.26 February 10, 2017
- Added support for lis_*solver_get_rhistory() in Fortran (thanks to Thomas Goelles).
- Updated documents (thanks to Thomas Goelles).
Version 1.7.25 February 3, 2017
- Updated documents (thanks to Hiroshi Kanayama).
Version 1.7.24 January 25, 2017
- Updated test/test4b.c.
Version 1.7.23 January 22, 2017
- Added support for test/test4b.c (thanks to Ganesh Natarajan).
- Updated test/spmvtest1.c.
Version 1.7.22 January 13, 2017
- Updated documents (thanks to Ganesh Natarajan).
Version 1.7.21 January 2, 2017
- Fixed descriptions.
- Updated documents.
Version 1.7.20 December 19, 2016
- Fixed type of argc in lis_initialize() to avoid conflict with MPI_Init().
Version 1.7.19 December 19, 2016
- Fixed critical bug in lis_init.c.
- Fixed long long int related bugs.
- Fixed long double related bugs.
Version 1.7.18 December 15, 2016
- Fixed types for print statements.
Version 1.7.17 December 14, 2016
- Fixed type related MPI bugs in Fortran programs.
Version 1.7.16 December 11, 2016
- Added support for GCC libquadmath.
- Fixed quad precision bugs in Fortran programs.
Version 1.7.15 December 6, 2016
- Fixed MPI bug in lis_error().
- Fixed print bugs.
- Changed specification of lis_print_rhistory().
Version 1.7.14 December 3, 2016
- Fixed type related MPI bugs.
- Fixed bug in src/system/lis_error.c.
- Updated src/system/lis_input.c.
- Updated documents.
Version 1.7.13 November 22, 2016
- Updated documents (thanks to Wei Liu).
Version 1.7.12 November 11, 2016
- Fixed type related print bugs in lis_error.c.
- Fixed bug in spmvtest3b.c.
Version 1.7.11 November 10, 2016
- Fixed type related print bugs in test/spmvtest*.c.
Version 1.7.10 November 8, 2016
- Fixed type related print bug in lis_esolver.c.
Version 1.7.9 November 7, 2016
- Cleaned up print statements using lis_printf().
- Fixed type related print bugs in error messages.
Version 1.7.8 November 4, 2016
- Fixed installation bugs in win/Makefile.in.
- Updated documents.
Version 1.7.7 November 3, 2016
- Fixed bug in generalized Lanczos.
Version 1.7.6 November 1, 2016
- Fixed bug in generalized CG.
Version 1.7.5 October 29, 2016
- Added support for generalized Rayleigh quotient iteration,
generalized CG, and generalized Arnoldi iteration.
Version 1.7.4 October 26, 2016
- Fixed index bug in lis_esolver_ai.c.
Version 1.7.3 October 25, 2016
- Fixed shift related bugs.
- Added support for option -ige for generalized eigenproblems.
- Disabled complex operations if complex.h is not available.
- Updated documents.
Version 1.7.2 October 24, 2016
- Added support for generalized Lanczos iteration.
Version 1.7.1 October 23, 2016
- Inverted sign of shift for eigensolvers in accordance with custom.
- Inverted sign of shift in lis_matrix_shift_diagonal(), lis_vector_shift(),
and lis_array_shift(), respectively.
- Added support for shift for generalized eigenproblems.
- Updated man pages.
Version 1.7.0 October 22, 2016
- Added official support for generalized eigenvalue problems.
- Added support for generalized subspace iteration.
Version 1.6.39 October 21, 2016
- Added experimental support for generalized power iteration.
Version 1.6.38 October 20, 2016
- Fixed print statements in eigensolvers for option -eprint none.
- Added experimental support for generalized inverse iteration.
Version 1.6.37 October 19, 2016
- Updated test6f.F90.
- Added experimental support for generalized CR.
Version 1.6.36 October 17, 2016
- Updated test6.c (thanks to Hiroshi Kanayama).
- Updated lisf_*.c (thanks to Florian Lehner).
- Updated lis_esolver.c.
Version 1.6.35 October 16, 2016
- Updated notations of eigensolvers.
- Fixed bug of option -shift.
- Deleted approximate inverse iteration from eigensolvers.
Version 1.6.34 October 14, 2016
- Updated documents (thanks to Hiroshi Kanayama).
Version 1.6.33 October 13, 2016
- Added support for lis_gesolve().
Version 1.6.32 October 12, 2016
- Updated lis_array_*().
- Updated man pages.
Version 1.6.31 October 11, 2016
- Updated documents (thanks to Hiroshi Kanayama).
- Fixed bug in Makefile.am.
Version 1.6.30 October 10, 2016
- Updated documents (thanks to Hiroshi Kanayama).
- Updated man pages.
- Updated include/lis.h.
Version 1.6.29 October 7, 2016
- Fixed quad precision bug in lis_solver.c (thanks to Yonggwi Cho).
Version 1.6.28 October 6, 2016
- Updated eigensolvers.
Version 1.6.27 October 5, 2016
- Updated lis_esolver_ai.c.
Version 1.6.26 October 5, 2016
- Fixed bugs in test/*.F.
Version 1.6.25 October 2, 2016
- Fixed bugs in test/test*.F90.
Version 1.6.24 September 30, 2016
- Fixed bugs in test/test1f.F.
Version 1.6.23 September 29, 2016
- Added support for COCG and COCR.
Version 1.6.22 September 28, 2016
- Added support for lis_vector_nhdot().
Version 1.6.21 September 27, 2016
- Fixed bug in lis_esolver.c.
Version 1.6.20 September 25, 2016
- Updated documents (thanks to Hiroaki Morimoto).
Version 1.6.19 September 24, 2016
- Fixed complex related bugs.
Version 1.6.18 September 23, 2016
- Fixed complex related bugs.
Version 1.6.17 September 23, 2016
- Fixed complex related bugs.
Version 1.6.16 September 21, 2016
- Fixed complex related bugs.
Version 1.6.15 September 20, 2016
- Fixed complex related bugs.
Version 1.6.14 September 19, 2016
- Fixed complex related bugs.
Version 1.6.13 September 19, 2016
- Fixed complex related configuration in lis_solver_cg.c.
Version 1.6.12 September 16, 2016
- Updated win/*.
- Fixed memory leak bug in lis_esolver_cg.c.
Version 1.6.11 September 15, 2016
- Updated win/* (thanks to Hiroaki Morimoto).
- Updated lis_input_hb.c.
Version 1.6.10 September 14, 2016
- Added support for outputting complex matrices.
- Added support for reading Hermitian matrices.
Version 1.6.9 September 13, 2016
- Fixed bugs in lis_input_hb.c.
- Updated documents.
Version 1.6.8 September 12, 2016
- Fixed critical bug in lis_input_mm.c for reading symmetric matrices.
Version 1.6.7 September 11, 2016
- Added support for lis_vector_conjugate().
Version 1.6.6 September 10, 2016
- Fixed bug in win/Makefile.in.
- Updated test7.c and test7f.F.
Version 1.6.5 September 9, 2016
- Fixed complex related bug on fabs().
- Updated test7.c and test7f.F.
Version 1.6.4 September 8, 2016
- Fixed bug in lisf.h.in.
- Updated test7.c and test7f.F.
Version 1.6.3 September 7, 2016
- Added support for lis_solver_get_status() in Fortran (thanks to
Alessandro Brovelli).
Version 1.6.2 September 6, 2016
- Fixed complex related bug in test4f.F.
Version 1.6.1 September 5, 2016
- Fixed quad precision bug (thanks to Florian Lehner).
Version 1.6.0 September 4, 2016
- Added official support for flag --enable-complex.
- Fixed complex related bugs in parallel processing.
- Added support for inputting complex matrices in Harwell-Boeing format.
Version 1.5.79 September 3, 2016
- Fixed complex related bugs.
Version 1.5.78 September 2, 2016
- Added support for outputting complex vectors.
- Updated documents.
Version 1.5.77 September 1, 2016
- Added support for inputting complex matrices in Matrix Market format.
Version 1.5.76 August 31, 2016
- Fixed complex related bugs.
Version 1.5.75 August 31, 2016
- Added experimental support for flag --enable-complex for complex scalar.
- Updated documents.
Version 1.5.74 August 26, 2016
- Fixed configurations for complex.h.
Version 1.5.73 August 25, 2016
- Fixed configurations for complex numbers.
Version 1.5.72 August 25, 2016
- Fixed bug in test7f.F.
Version 1.5.71 August 25, 2016
- Fixed bug in Fortran configuration for complex*32.
Version 1.5.70 August 25, 2016
- Added official support for complex numbers.
- Renamed test7f.F90 test8f.F90.
- Added test7.c and test7f.F for complex numbers.
- Added decralations for PSD functions.
Version 1.5.69 August 21, 2016
- Fixed bug in test/Makefile.am.
Version 1.5.68 August 21, 2016
- Added test7.F90 to test_PROGRAMS in test/Makefile.am.
Version 1.5.67 August 20, 2016
- Added test7.F90 to test/Makefile.am.
Version 1.5.66 June 17, 2016
- Added note on file format for symmetric matrices to Appendix (thanks to
Kodanda Ram Mangipudi).
Version 1.5.65 March 19, 2016
- Fixed bug in lis_matrix_csr.c.
Version 1.5.64 March 19, 2016
- Added support for alternative workflow PSD, or Preconditioner and Solver
Decoupled (thanks to Neil Hodge).
- Updated documents.
Version 1.5.63 January 31, 2016
- Fixed autoreconf related bugs (thanks to Florian Lehner).
Version 1.5.62 January 7, 2016
- Changed names of preprocessor macros _LONGLONG and LONGLONG to
_LONG__LONG and LONG__LONG, respectively, to avoid conflict with __int64.
Version 1.5.61 January 7, 2016
- Fixed __int64 related bug in lis.h for Visual C++
(thanks to Takeshi Takeda).
Version 1.5.60 January 2, 2016
- Deleted "-O3" options associated with Intel compilers
so that developers can define optimization themselves
(thanks to Neil Hodge).
- Moved inclusion of math.h from lis.h to lis_solver.c
(thanks to Neil Hodge).
- Deleted duplicate defines in lis.h
(thanks to Neil Hodge).
- Fixed bug in lis_init.c associated with extra whitespace between
solver options (thanks to Neil Hodge).
- Modified code in lis_vector.c and lis_matrix.c to allow for the case
of zero DOFs on a process (thanks to Neil Hodge).
- Updated documents.
Version 1.5.59 December 15, 2015
- Added include statement for math.h to lis.h
(thanks to Neil Hodge).
Version 1.5.58 November 31, 2015
- Added include statements for math.h to lis_solver.c and lis_esolver.c
(thanks to James Liu).
Version 1.5.57 July 7, 2015
- Added support for lis_matrix_unset() in C (thanks to Norihiro Watanabe).
Version 1.5.56 June 25, 2015
- Updated documents.
- Added experimental support for complex numbers.
Version 1.5.55 May 14, 2015
- Added support for lis_solver_get_precon() and lis_solver_get_preconname()
in Fortran (thanks to Domenic D'Ambrosio).
- Updated documents (thanks to Domenic D'Ambrosio).
Version 1.5.54 April 30, 2015
- Fixed configurations for Windows (thanks to Domenic D'Ambrosio).
- Added support for combining Intel Fortran Compiler with Visual C
(thanks to Domenic D'Ambrosio).
Version 1.5.53 April 5, 2015
- Updated documents (thanks to Sushilkumar Sreekumar).
Version 1.5.52 March 28, 2015
- Updated documents (thanks to Sushilkumar Sreekumar).
Version 1.5.51 February 10, 2015
- Updated documents.
Version 1.5.50 February 9, 2015
- Updated documents (thanks to Sushilkumar Sreekumar).
Version 1.5.49 February 6, 2015
- Updated documents (thanks to Carlo de Falco).
Version 1.5.48 February 6, 2015
- Fixed exception handling bug in lis_matrix_set_size() (thanks to
Carlo de Falco).
Version 1.5.47 January 10, 2015
- Removed unused variables in lis_precision_vec.c.
Version 1.5.46 January 8, 2015
- Fixed quad precision bug in lis_precision_vec.c.
- Updated config/config.*.
- Cleaned up programs.
Version 1.5.45 December 30, 2014
- Added documents for matrix addition.
- Updated documents.
Version 1.5.44 December 29, 2014
- Fixed exception handling in matrix addition.
- Updated documents.
Version 1.5.43 December 28, 2014
- Fixed Fortran functions for matrix operations.
Version 1.5.42 December 27, 2014
- Added support for matrix addition.
Version 1.5.41 December 23, 2014
- Fixed bug in win/Makefile.in.
Version 1.5.40 December 20, 2014
- Fixed variable declaration bug in lis_precision_vec.c.
Version 1.5.39 December 16, 2014
- Updated documents.
Version 1.5.38 December 15, 2014
- Updated documents.
Version 1.5.37 December 14, 2014
- Cleaned up programs (thanks to Florian Lehner).
Version 1.5.36 December 11, 2014
- Updated lis_esolver_rqi.c.
Version 1.5.35 December 10, 2014
- Updated documents (thanks to Sushilkumar Sreekumar).
Version 1.5.34 December 8, 2014
- Updated documents.
- Changed default preconditioners for eigensolvers.
Version 1.5.33 December 7, 2014
- Updated documents.
- Added experimental support for Jacobi-Davidson.
- Fixed exception handling bug in lis_matrix_set_size() (thanks to Yi Yao).
Version 1.5.32 December 5, 2014
- Updated documents.
Version 1.5.31 December 4, 2014
- Updated etest7.c.
- Updated lis_esolver_ai.c.
Version 1.5.30 December 3, 2014
- Updated documents.
- Fixed print bug on iteration counts of inner eigensolvers.
Version 1.5.29 December 2, 2014
- Added experimental support for Arnoldi iteration.
- Disabled obsolete option -m for eigensolvers.
- Updated documents.
Version 1.5.28 December 1, 2014
- Changed default linear solver for eigensolvers.
- Changed order of eigensolvers:
flags | eigensolvers flags | eigensolvers
------------+-------------------- ------------+--------------------
-e {si|5} | Subspace ==> -e {cg|5} | CG
-e {li|6} | Lanczos -e {cr|6} | CR
-e {cg|7} | CG -e {si|7} | Subspace
-e {cr|8} | CR -e {li|8} | Lanczos
- Updated documents.
Version 1.5.27 November 30, 2014
- Updated documents.
Version 1.5.26 November 29, 2014
- Changed names of functions lis_array_matvec2() and
lis_array_matmat2() to lis_array_matvec_ns() and lis_array_matmat_ns(),
respectively.
Version 1.5.25 November 28, 2014
- Updated lis_array.c.
Version 1.5.24 November 27, 2014
- Updated lis_array.c (thanks to Florian Lehner).
Version 1.5.23 November 26, 2014
- Cleaned up lis_esolver_li.c.
- Cleaned up lis_array.c.
- Fixed convergence condition of lis_array_qr().
Version 1.5.22 November 25, 2014
- Updated documents.
Version 1.5.21 November 24, 2014
- Cleaned up lis_solver_*.c.
- Added support for test6f.F90 for array operations.
- Updated documents.
Version 1.5.20 November 23, 2014
- Updated documents.
Version 1.5.19 November 22, 2014
- Fixed bug in lisf_array.c (thanks to Florian Lehner).
Version 1.5.18 November 21, 2014
- Updated documents.
Version 1.5.17 November 20, 2014
- Updated lis_fortran.h for Win64 environment.
- Fixed initial value related bug in GMRES to enable option -initx_zeros.
Version 1.5.16 November 19, 2014
- Updated documents (thanks to Sushilkumar Sreekumar).
Version 1.5.15 November 18, 2014
- Fixed order of array elements in lis_array_cgs(), lis_array_mgs(),
and lis_array_qr().
- Fixed memory initialization bug in lis_array_mgs().
- Updated documents.
Version 1.5.14 November 16, 2014
- Cleaned up programs.
- Updated eigensolvers.
- Added sample scripts for graphics.
Version 1.5.13 November 14, 2014
- Updated documents.
Version 1.5.12 November 13, 2014
- Updated documents.
Version 1.5.11 November 12, 2014
- Updated test3b.c.
Version 1.5.10 November 11, 2014
- Added sample scripts for graphics.
Version 1.5.9 November 9, 2014
- Cleaned up programs.
Version 1.5.8 November 8, 2014
- Updated documents.
Version 1.5.7 November 7, 2014
- Fixed print format.
- Fixed elapsed time related bug in preconditioned eigensolvers.
- Fixed CR related bug in lis_esolver_cg.c.
Version 1.5.6 November 6, 2014
- Updated documents.
Version 1.5.5 November 5, 2014
- Cleaned up programs.
- Updated documents.
Version 1.5.4 November 4, 2014
- Fixed quad precision related bug in lis_esolver_si.c.
- Fixed bug in test/Makefile.am.
Version 1.5.3 November 3, 2014
- Updated eigensolvers.