-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
1656 lines (697 loc) · 42.7 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
2005/04/24 Nicolas Regnault:
* add CreateChangelog script to generate ChangeLog from cvs.
* at last, update the ChangeLog!
* start adding main task for QHE overlap calculation on sphere.
2005/04/24 Nicolas Regnault:
* clean QHENBodyQuasiHoleOverlap. Now use new formula to evaluate overlap betwen two subspaces of dimensions > 1
* QHEOnSphereLzSortedSpectrum is now completed and working.
* add support (or prepare support) of on-disk cache for classes deriving from AbstractQHEOnSphereHamiltonian.
* QHEBosonsDelta has now support of on-disk cache.
2005/04/18 Nicolas Rgenault:
* still working on QHEOnSphereLzSortedSpectrum
2005/04/18 Nicolas Regnault:
* start adding QHEOnSphereLzSortedSpectrum class to solve problem due to degeneracy of input vectors in QHENBodyQuasiHoleOverlap
2005/04/15 Nicolas Regnault:
* start adding unprojected CF wave functions.
2005/04/13 Nicolas Regnault:
* on disk cache is now working for AbstractQHEOnSphereNBodyInteractionHamiltonian
2005/04/08 Nicolas Regnault:
* fix a bug in AbstractOption that appears when using two option names with one one them is identical to the beginning of the second one
* add method in Architecture to get temporary file names
* start adding support of on-disk cache with some hamiltonian (allowing huge and not-so-sparse matrices)
* clean QHEBosonsFromGivenBasis
2005/04/01 Nicolas Regnault:
* correct misprint in BosonOnSphere
* add QHEBosonsFromGivenBasis to evaluate Hamiltonian in a subspce given by a bunch of vectors on disk.
2005/03/23 Nicolas Regnault:
* start adding support of polynomial with complex coefficients
2005/03/23 Nicolas Regnault:
* tridiagonalization algorithm for RealBandDiagonalSymmetricMatrix if now working (tested against more than 2000 matrices with various sizes <= 500 and band sizes)
* FullReorthogonalizedBlockLanczosAlgorithm is now using RealBandDiagonalSymmetricMatrix instead of RealSymmetricMatrix
2005/03/23 Phuong Nguyen:
* Correct a typo mistake (???)
2005/03/21 Nicoas Regnault:
* working on tridiagonalization algorithm of RealBandDiagonalSymmetricMatrix
2005/03/18 Nicolas Regnault:
* fix bug in SMPArchitecture with multiple hamiltonian-vector multiplications
* still working on RealBandDiagonalSymmetricMatrix
2005/03/16 Nicolas Regnault:
* start adding RealBandDiagonalSymmetricMatrix
2005/03/16 Nicolas Regnault:
* add new basic methods in Hamiltonians to allow multiple vector-hamiltonian multiplications et the same time
* add a new architecture-depend operation MultipleVectorHamiltonianMultiplyOperation to evaluate multiple vector-hamiltonian multiplications, and add its support into the current architectures.
* add multiple clone creation for vectors
* FullReorthogonalizedBlockLanczosAlgorithm is now working and give similar results compare to the FullReorthogonalizedLanczosAlgorithm.
2005/03/13 Nicolas Regnault:
* enhance GetBosonsDimension to include full calculation of dimension of Hilbert spaces with total L and Lz constraints.
2005/03/11 Nicolas Regnault:
* still improving QHENBodyQuasiHoleOverlap
2005/03/11 Nicolas Regnault:
* still working on QHENBodyQuasiHoleOverlap
* start adding new Lanczos variant (block Lanczos)
2005/03/10 Nicolas Rgenault:
* add methods to ConfigurationParser to directly retrieve double, integer, boolean and araays of integer/double
* add support for multiple n-body interaction terms in QHEBosonsNBodyHardCore
2005/03/08 Nicolas Regnault:
* ParticleOnSphereSquareTotalMomentumOperator is now working
* QHENBodyQuasiHoleOverlap sorts test wave functions with respect to their total angular momentum
2005/03/07 Nicolas Regnault:
* still working on ParticleOnSphereSquareTotalMomentumOperator
2005/03/07 Nicolas Regnault:
* satrt testing ParticleOnSphereSquareTotalMomentumOperator
2005/03/06 Nicolas Regnault:
* add new sort function in ArrayTools
* QHENBodyQuasiHoleOverlap is now working but still has to be tested
* start adding L^2 operator for QHE on sphere
2005/03/04 Nicolas Regnault:
* add error dumper in ConfigurationParser
* add QHENBodyQuasiHoleOverlap for multiple overlap calculation
2005/03/03 Nicoas Regnault:
* fix a bug in state back-tracking method of FermionOnTorusWithMagneticTranslations that can catch the program into an infinite loop.
2005/03/02 Nicolas Regnault:
* FermionOnTorusWithMagneticTranslations is now working (at last)
2005/02/28 Nicolas Regnault:
* FermionOnTorusWithMagneticTranslations has passed first tests (still have to test for l > 30)
2005/02/24 Nicolas Regnault:
* still working on FermionOnTorusWithMagneticTranslations.
2005/02/23 Nicolas Regnault:
* always trying to fix FermionOnTorusWithMagneticTranslations
2005/02/22 Phuong Nguyen:
* Add a Perl script to transform automatically a Gnuplot script file to a EPS file. Very useful!Requirement: Gnuplot 4.0, fig2dev (transfig package) and tetex
2005/02/18 Nicolas Regnault:
* still fixing you know what ;)
2005/02/18 Nicolas Rgenault:
* still working on FermionOnTorusWithMagneticTranslations
2005/02/17 Phuong Nguyen:
* Correct a type bug (E instead of e) in PeriodicReflexionSymmetryOneDOneParticle.cc
* Add the program PeriodicProbabilityDensity to calculate probability density along z axis
* Remove two redundant arguments in class XYReflexionSymmetricPeriodic3DHamiltonian and associated built-in programs.
2005/02/11 Nicolas Regnault:
* still fixing FermionOnTorusWithMagneticTranslations...
2005/02/06 Nicolas Regnault:
* stil trying to fix FQHE on torus with magnetic translations.
2005/01/29 Phuong Nguyen:
* Add the 2S separable model in the potential ThreeDConstantCylinderPotential and built-in program PeriodicOneDStructure
* Add two barrier layers in the potential QuantumDotThreeDConstantCylinderPotential and built-in program CylinderQuantumDot
2005/01/25 Nicolas Regnault:
* fix FermionOnTorus to work on 64 bits architectures.
* make ParticleOnTorusCoulombHamiltonian work again.
2005/01/24 Phuong Nguyen:
* A huge change concerning the introduction of new Hilbert space classes!!! Hope that works!
2005/01/24 Phuong Nguyen:
* Rename some Hilbert spaces files, since they are not abstract classes.
2005/01/20 Nicolas Regnault:
* generic CF wave functions now work.
* add manager for QHE wave functions
2005/01/14 Nicolas Regnault:
* add parser for simple configuration files
* start adding support of generic CF wave function
2005/01/14 Phuong Nguyen:
* Correct a bug in XYReflexionSymmetryOscillatorForce.cc
2005/01/13 Phuong Nguyen:
* Modify some option names which cause problem for input of the program
2005/01/13 Phuong Nguyen:
* Add barrier layers just below and above the dot + WL for DotEmbeddedWellThreeDConstantCellPotential class and DotEmbeddedWell built-in program.
2005/01/12 Phuong Nguyen:
* Add a built-in program to calculate the probability densities in a X-Y reflexion symmetric sample
2005/01/12 Phuong Nguyen:
* Accelerate the calculation of Hamiltonian elements by grouping a line of cells having the same potential
2005/01/06 Nicolas Regnault:
* fix problem with /= operation for complex number
* JainCFFilledLevelOnSphereWaveFunction is now working for pseudo-Landau level up to 3
2004/12/17 Nicolas Regnault:
* add another dummy script.
2004/12/15 Nicolas Regnault:
* allow calculation of mean value <Psi+^n(0)Psi^n(0)> through QHEBosonsNBodyCorrelation
2004/12/14 Nicolas Regnault:
* move QHE operators into QHEOperator package.
2004/12/14 Phuong Nguyen:
* Fix the vicious bug in evaluating the norm of an overlap between two periodic wave functions
2004/12/14 Nicolas Regnault:
* add new package subdivision to Operator
* add new operator and start cleaning old ones
2004/12/12 Nicolas Regnault:
* try to make JainCFFilledLevelOnSphereWaveFunction produce valid results...
2004/12/10 Nicolas Regnault:
* first test of JainCFFilledLevelOnSphereWaveFunction
2004/12/10 Phuong Nguyen:
* Modify the PeriodicWaveFunctionValue so that it can print out many points once to advoid the frequent load of eigenvector
2004/12/09 Nicolas Regnault:
* working on JainCFFilledLevelOnSphereWaveFunction
2004/12/09 Nicolas Regnault:
* fix some missing #include <math.h> and Makefile.am in QHEOnSphere that can cause troubles with some compilers.
2004/12/08 Phuong Nguyen:
* Add the built-in program PeriodicWaveFunctionValue to calculate the wave function value in a 3D plane wave basis.
2004/12/08 Phuong Nguyen:
* Modify the program TetrapodDotAnalysis
2004/12/07 Phuong Nguyen:
* Add the built-in program TetrapodDotAnalysis which was forgotten
2004/12/07 Phuong Nguyen:
* Add a method to calculate the probabilities in different part of the Tetrapod potential in PeriodicSpectra
* Add a built-in program to calculate these probabilites
2004/12/07 Nicolas Regnault:
* forget to add ParticleOnTorusDipolarWithMagneticTranslationsHamiltonian in previos commit
2004/12/02 Nicolas Regnault:
* implement standard interface for QHEFermionsDipolar
2004/12/01 Nicolas Regnault:
* add new pragmas to allow separate compilation of GeneralTools, Vector and Matrix packages.
2004/11/30 Nicolas Regnault:
* fix bug when writing vectors on big endian architecture
* fix AIX patch
* allow to deactivate use of Polynomial and Output packages in Vector and Matrix packages
* Moore-Read wave functions on disk are now working
2004/11/29 Phuong Nguyen:
* Fix a bug when the arm radius is zero (the upper arm had a non-zero potential) in TetrapodThreeDConstantCellPotential
2004/11/26 Phuong Nguyen:
* Correct the sign of overlap integral in some quantum dot hamiltonians
* Add a method in PeriodicSpectra to calculate the proability in a cube for 3d plane wave function basis
2004/11/24 Phuong Nguyen:
* Adjust some default parameters in Periodic3DElectronHoleQuantumDot.cc for the calculations done at IDRIS
2004/11/22 Phuong Nguyen:
* Fix the norm bug in OverlapComplex.cc
2004/11/18 Phuong Nguyen:
* Fix a bug of effective masses in PeriodicOneDStructure.cc
* Fix an error of norm evaluation in OverlapComplex.cc
2004/11/18 Phuong Nguyen:
* Fix the norm error in OverlapComplex.cc
2004/11/18 Phuong Nguyen:
* Add the OverlapComplex program to calculate the overlap of two states
2004/11/18 Phuong:
* Correct the errors in TetrapodThreeDConstantCellPotential class
* Add a bitmap picture saving method in BinaryThreeDConstantCellPotential class
2004/11/17 Phuong Nguyen:
* Add the potential and built-in program for a tetrapd dot (Hong Kong group)
2004/11/05 Nicolas Regnault:
* add Moore-Read state wave functions on disk
2004/11/04 Phuong Nguyen:
* Add the (2 Pi)^2 factor in the k contribution of coulombian term
2004/11/03 Phuong Nguyen:
* Uncomment some lines in PeriodicElectronHole3DHamiltonian.cc that change the results in simulation
2004/11/02 Phuong Nguyen:
* New version of PeriodicElectronHole3DHamiltonian: a great optimization of memeory saving and time consuming
* Remove some cout commands in some Hilbert space files
2004/10/28 Phuong Nguyen:
* Fix the long names in some Hilbert space files
* Fix the problem of destroy two times the Hilbert space in PeriodicElectronHole3DHamiltonian
* Fix the fstream declaration problem in Periodic3DQuantumDots.cc
2004/10/28 Phuong Nguyen:
* Restore the FullReorthogonalizedComplexLanczosAlgorithm.cc by deleting some cout commands
* Upload to test the latest version of exciton problem at Idris
* Still have bug in some Hilbert spaces' destructor. Will fix them soon.
2004/10/27 Nicolas Regnaut:
* fix MAJOR BUG in ComplexVector that plagues Vector-Hamiltonian multiplication in SMP mode.
2004/10/27 Phuong Nguyen:
* commit to make a test of the program for excitons. Still have bugs :-(
2004/10/27 Phuong Nguyen:
* Optimize the hamiltonian for the two-particle problem.
2004/10/27 Phuong Nguyen:
* Fix the bugs in destructor in some Hilbert space classes: delete the members many times
* The PeriodicElectronHole3DHamiltonian is now ready. Need some more optimization.
2004/10/26 Nicolas Regnault:
* fix bug in QHEOnSphereMainTask that plagues most of FQHE on sphere when evaluating eigenvectors of Hilbert space of size 2
* fix bug in QHEBosonsDelta and QHEBosonsCoulomb when asking to start at a given lz value with wrong parity (previous to this fix, program started from the lowest lz value)
2004/10/25 Nicolas Regnault:
* In principle, fix all compilation errors that occured in the QunatumDot part.
2004/10/25 Phuong Nguyen:
* Add the Hilbertspace, Hamiltonian and the main program for the problem of excitons in quantum dots. Still have lots of run-time bugs.
2004/10/22 Nicolas Regnault:
* fix a problem when evaluation determinant of an exactly degeneated complex matrix
* fix problem with ParticleOnDiskFunctionBasis (wrong normalization)
2004/10/20 Anonymous Coward:
* add little/big endian test to the configure script
* on disk vector/matrix read/write use now little endian convention wheter the architecture use little or big endian byte ordering
2004/10/14 Nicolas Regnault:
* move QHEFermionsDiskLaplacianDelta.cc to src/Programs/QHE/QHEOnDisk and change its name into QHEFermionsLaplacianDelta.cc
* add overlap calculation for fermions on disk
2004/10/13 Phuong Nguyen:
* Add files for the new structured QuantumDotHilbertSpace directory
2004/10/13 Phuong Nguyen:
* Add a method to calculate the extension of a function in CylinderInMagneticFieldSpectra
2004/10/11 Nicolas Regnault:
* fix bug in QHEOnDisk/QHEBosonsDelta
2004/10/11 Nicolas Regnault:
* duplicate QHEBosonsDiskDelta into QHEOnDisk/QHEBosonsDelta
2004/10/10 Nicoas Regnault:
* start adding support of wave function overlap for QHE on disk
2004/10/09 Nicolas Regnault:
* forget QHEOnDiskMainTask in previous commit
2004/10/08 Nicolas Regnault:
* first version of QHEBosonsNBodyHardCore that doesn't seg fault and that give similar results to QHEBosonsDiskDelta for the two body case.
2004/10/08 Nicolas Regnault:
* switch from int to long for state description in FermionOnTorus and FullFermionOnTorus
2004/10/07 Nicolas Regnault:
* fix some of the compilation problems that occurs with xlC (still have to fix those arising from the src/Programs/QuantumDots, but src/Programs/QHE works fine)
2004/10/06 Nicolas Regnault:
* continue working on FQHE n-body interaction on disk
2004/10/04 Nicolas Regnault:
* fix a problem with the missing/depcomp file
* starting n-body interactions to FQHE on disk
2004/10/02 Nicolas Regnault:
* Fix memory leak in BosonOnSphere when using ProdAdProdA. Improve speed (50%) when using operators with BosonOnSphere (avoid memory allocation/free)
2004/10/01 Nicolas Regnault:
* fix a bug in AbstractQHEOnSphereNBodyInteractionHamiltonian that appears when using partial fast calculation
* improve AbstractQHEOnSphereNBodyInteractionHamiltonian and ParticleOnSphereNBodyHardCoreHamiltonian, they now require less memory and are faster.
* change name TrappedBoson into BosonOnDisk and TrappedBosonHamiltonian into ParticleOnDiskDeltaHamiltonian
2004/09/30 Nicolas Regnault:
* fix some problems with switch2longdouble.pl (still have to fix QD stuffs to allow double to long double transition).
2004/09/30 Nicolas Regnault:
* clean code to allow change from double to long double (not yet finished)
2004/09/29 Nicolas Regnault:
* correct a bug in AbstractQHEOnSphereNBodyInteractionHamiltonian that prevents using value of 2S+1 smaller than the number of particles that interact simultaneously (bosons only)
* do more tests with ParticleOnSphereNBodyHardCoreInteractionHamiltonian, seems to give correct results.
2004/09/29 Phuong Nguyen:
* Add the capability of calculating a problem with vertical magnetic field in PeriodicOneDStructure.cc
* Some error due to the CylindricalHamiltonianInMagneticField was discovered. To be fixed soon!!
2004/09/28 Nicolas Regnault:
* fix bug when display error message of an ruuning option that doesn't have a shortcut
* fix bug in most of QHEOnSphere exact diagonalization program with the output file (the output file was deleted before each new Lz calculation)
* continue and test n-body interaction case. Compare it with the 2-body case (direct comparison) and the 3-body (overlap with the pfaffian wave function).
2004/09/27 Nicolas Regnault:
* continue adding support for N-body hard core interaction for FQHE
2004/09/27 Phuong Nguyen:
* Modify the file ParticleOnSphereNBodyHardCoreHamiltonian.cc to prevent a compilation error
* Add an analysis program: src/Tools/QuantumDot/Analysis/DefaultCylinderSymmetryInMagneticFieldOscillatorForce.cc
2004/09/24 Anonymous Coward:
* Nicolas Regnault
* start adding Hamiltonian for QHE with N-body interaction terms
* add Pascal triangle evaluation in IntegerAlgebraTools
2004/09/21 Nicolas Regnault:
* start adding support for n-body interaction into ParticleOnSphere Hilbert space.
2004/09/21 Nicolas Regnault:
* compare Moore-Read implementation to Pffafian calculation for clusters of two particles.
2004/09/20 Nicolas Regnault:
* fix compilation problem in JainCFFilledLevelOnSphereWaveFunction
2004/09/20 Nicolas Regnault:
* add new package for random number generators
* modify overlap caluclation to use Metropolis sort according to the modulus of the test wave function (improving Monte-Carlo convergence)
* start coding new test wave function for FQHE on sphere (CF states and Moore-Read states)
2004/09/12 Nicolas Regnault:
* fix compilation problem due to not yet committed files
* add Metropolis algorithm to FQHE overlap calculations (has to be tested)
2004/09/09 Nicolas Regnault:
* add new directory for QHE on sphere (programs that where previously in src/Program/QHE and refering to the sphere will be move latter)
* add new program to evaluate pair correlation function and another for Gross-Pitaevskii approximation
2004/09/08 Phuong Nguyen:
* Add the missed file PeriodicOscillatorForce.cc
* Still have a compilation problem in src/HilbertSpace/QuantumDotHilbertSpace since several new files have not been committed yet
2004/09/02 Nicolas Regnault:
* modify QHEBosonsCoulomb to support new option manager and allow it to produce eigenvectors.
2004/09/01 Nicolas Regnault:
* move Bosons program to BosonsDiskDelta and now use option manager
* add pfaffian evaluation for skew symmetric matrices
* fix pivot problem that could arise in determinant calculation (in RealMatrix and ComplexMatrix).
* add new abstract class for numrical function from R^n -> C
* add new package for QHE wave functions
2004/08/29 Nicolas Regnault:
* add QHEFermionsLaplacianDeltaOverlap.cc that has been forgotten during previous commit.
2004/08/29 Nicolas Regnault:
* add evaluation of determinants for real and complex matrices.
* add read from /write to disk method for matrices
* add evaluation of wave function in real space for FermionOnSphere
* add new program to evaluate overlap associated to QHEFermionsLaplacianDelta
2004/08/25 Nicolas Rgenault:
* Fix a makefile problem in src/Tools/QuantumDot/Analysis
2004/08/22 Nicolas Regnault:
* add minor development for permanent
* add new matrix types (complex skew symmetric, upper and lower triangular)
2004/08/11 Phuong Nguyen:
* Add the program DotProbability to find the probability in the dot of a state
2004/08/10 Phuong Nguyen:
* Add some corrections to the program names
* Correct the name of the file DefaultCylinderSymmetryOscllatorForce.cc
2004/08/09 Phuong Nguyen:
* Save the options used in two files in built-in programs
2004/08/09 Phuong Nguyen:
* Add method to display the options as well as their values in src/Options/
* Save the options used in two files in src/Programs/QuantumDot/EllipticalDot.cc
2004/08/06 Phuong Nguyen:
* Add more analysis tools in src/Tools/QuantumDot/Analysis/
2004/08/05 Phuong Nguyen:
* Add analysis tools (DOS, oscillator force, absorption spectra, ...) in src/Tools/QuantumDot/Analysis/
2004/08/05 Phuong Nguyen:
* Optimization in precalculation process of XYReflexionSymmetricPeriodic3DHamiltonian to accelerate the evaluation of Hamiltonian elements.
2004/08/04 Anonymous Coward:
* Nicolas Regnault
* add the beginning of two chapters of the developper documentation (Hilbert space and Hamiltonian).
* QHEBosonsDeltaOverlap now evaluates overlap with the Laughlin wave function
2004/08/04 Phuong Nguyen:
* Restore the configure.in version, without including $(top_builddir) in the INCLUDE macro
* Minor modification in the INCLUDE path in src/Programs/QHE/Makefile.am
* Building outside the source directory must work now. Check done.
2004/08/03 Phuong Nguyen:
* Modify the path of source directory to build directory to enable building the project outside the source code directory
2004/08/02 Nicolas Rgenault:
* minor modifications to QHEBosonsDeltaOverlap
2004/08/02 Phuong Nguyen:
* Improve the performance of QuantumDots3DHamiltonian in the case of fully calculated Hamiltonian
* Add the analysis tool for sinus basis in HardBoxSpectra
* Add the program to calculate the eigenstates in an elliptical box in sinus basis
2004/07/29 Nicolas Regnault:
* add AbstractScalarSumOperation class to handle all operation whose results is the sum of indepdendant scalar contributions.
* add QHEParticleWaveFunctionOperation to parallelize evaluation of QHE wave function in real space
2004/07/29 Nicolas Regnault:
* add a new version to evaluate permanent using precalculation table. Optimize permanent and wave function calculations (almost twice as fast as the previous version).
2004/07/28 Nicolas Regnault:
* add evaluation of permanent for square real and complex matrix.
* add possibility to evaluate wave function in real space for bosons on sphere
* start a small program that check overlap between exactly diagonalize state and a analytic test wave function
2004/07/26 Nicolas Regnault:
* Modify QHEBosonsDelta to be able to produce eigenstates
2004/07/19 Phuong Nguyen:
* Add calculations of probability of finding a particle in the dot.
* Add the calculations for P symmetry of one D structure obtained by gaussian weight.
2004/07/12 Phuong Nguyen:
* Add the calculation for 1-D problem deduced from a 3-D problem by using a gaussian weight in the plane
2004/07/09 Nicolas Regnault:
* start a new package for (light) numerical analysis.
2004/07/09 Phuong Nguyen:
* Add the piezoelectric field for Aleks in EllipticalDotThreeDConstantCellPotential class and the corresponding tools for analysis
2004/07/06 Nicolas Regnault:
* add simple methods to diagonalize real symmetric and hermitian matrices (wrapper to the Householder->QL/QR chain)
2004/07/06 Phuong Nguyen:
* Add CylinderQuantumDotSpectra to analyse the spetrum of Fourier-Bessel decomposition
2004/07/05 Nicolas Regnault:
* add Makefile.am and Makefile.in in src/Architecture/ClusterArchitecture (previous cvs commit couldn't compile due to the lack of these two files)
2004/07/04 Nicolas Regnault:
* modify ProgXMLDoc.pl to support option groups
* add some development and program docs
2004/06/25 Nicolas Regnault:
* fix compilation warning due to deprecated strstream header (switchto sstream)
* continue to deal with cluster architecture
2004/06/21 Nicolas Regnault:
* fix major bug in AbstractQHEOnSphereHamiltonian which plagues someQHE programs when dealing with reduction factor larger than 1 (bugintroduces when support for distributed architectures was added).
* add a script to search for possible fraction line in QHE fermionsdatabase results.
* continue support for dealing with vectors when using distributedarchitectures
2004/06/15 Nicolas Regnault:
* add a new program for QHE with bosons and only a V_2 pseudopotential
* start true support of cluster architectures (start with vectors tosupport distributed memory archiecture)
2004/06/13 Nicolas Regnault:
* move previous ProgXMLDoc.pl into OldProgXMLDoc.pl and start new version of ProgXMLDoc.pl which supports option groups.
2004/06/11 Nicolas Regnault:
* clean code of some QHE Hamiltonian
* add MainTask classes in order to obtain thread-safe/MPI-safe portionof code
* clean code of some QHE Programs and make them support MainTask
2004/06/11 Phuong Nguyen:
* Add the file PeriodicContinuum.cc to calculate the levels in a well.
* Modernize the options for some programs.
2004/06/08 Anonymous Coward:
* Phuong Nguyen
* Add the Fourrier-Bessel function basis in CylindricalQuantumDots3DHamiltonian.cc
* Reorganize the option structure of DotEmbeddedWell.cc and EllipticalDot.cc
2004/06/03 Nicolas Regnault:
* minor changes in QHEFermionsV3 (output file name, long statesupport...)
2004/06/03 Nicolas Regnault:
* restore the old way to evaluate Multiple*ScalarProductOperationtoghether with the new one (introduce scalar product strategy option)
* add QHE on sphere with generic pseudopotentials and en example withonly the V_3 pseudopotential
2004/06/02 Nicolas Regnault:
* fix a thread-safe bug in AbstractQHEOnDiskHamiltonian
* change QHEFermionsCoulomb to use new options scheme
* improve and test FermionOnSphereUnlimited (tests done with coulomb interaction)
2004/05/31 Nicolas Regnault:
* add new Hilbert space for fermions on sphere with no restriction concerning the number of particles/maximum momentum (not yet tested)
2004/05/28 Nicolas Regnault:
* modify Multiple*ScalarProductOperation To allow parallelizationthrough partial scalar product evaluation.
* modify Archiectures to support new Multiple*ScalarProductOperation.
* change AbstractQHEOnSphereHamiltonian to support parallelization ondistributed memory architecture for precalculations.
* add methods in Vector classes to exchange vectors through MPI.
* SimpleMPIArchitecture is almost complete and works withQHEFermionsLaplacianDelta.
2004/05/27 Phuong Nguyen:
* Add the SMP optimization for PeriodicQuantumDots3DHamiltonianInMagneticField
* Add a method to calculate mean positions in CylinderInMagneticFieldSpectra, which are needed in the case of magnetic field.