This repository has been archived by the owner on Jul 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHISTORY
18350 lines (18349 loc) · 776 KB
/
HISTORY
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
@ changeset: 3551:d5b865d78cc7
| tag: tip
| parent: 3549:7d09b7d319d3
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 18:34:55 2015 +0200
| summary: correct small bug of parallelempi du to const mesh change
|
| o changeset: 3550:146c97be4b95
|/ user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 17:18:00 2015 +0200
| summary: coorect typo a -> pTh
|
o changeset: 3549:7d09b7d319d3
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 16:23:28 2015 +0200
| summary: coorect const mesh* in mpi
|
o changeset: 3548:e2de17c1157b
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 15:54:17 2015 +0200
| summary: corret pb const mesh
|
o changeset: 3547:9af5ad1fc238
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 15:28:44 2015 +0200
| summary: add u.Th to get mesh of Finite element function in 2d an 3d
|
o changeset: 3546:a44859300b7f
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 15:03:10 2015 +0200
| summary: correct const mesh problem in parallelempi.cpp
|
o changeset: 3545:d17e77ae24ef
| user: Frederic Hecht <[email protected]>
| date: Sat Oct 03 14:45:36 2015 +0200
| summary: correct problem of pointeur on const mesh in 2d and 3d
|
o changeset: 3544:b6373ea082df
| user: Frederic Hecht <[email protected]>
| date: Fri Oct 02 22:57:50 2015 +0200
| summary: - add tools to get mesh of fespace Vh in 2d and 3d
|
o changeset: 3543:97d7781e5536
| user: Frederic Hecht <[email protected]>
| date: Wed Sep 30 14:33:59 2015 +0200
| summary: add miisng examples++-hpddm/Makefile.in in AutoGeneratedFile.tar.gz
|
o changeset: 3542:91ed8ab27502
| user: Frederic Hecht <[email protected]>
| date: Mon Sep 28 14:24:45 2015 +0200
| summary: add info on gsl and ffrandow in doc
|
o changeset: 3541:fba296aa486f
| user: Frederic Hecht <[email protected]>
| date: Mon Sep 28 11:33:38 2015 +0200
| summary: correct for 64 / 32 version WindowsPackage.m4
|
o changeset: 3540:f05230b08de6
| user: Frederic Hecht <[email protected]>
| date: Sat Sep 26 21:53:06 2015 +0200
| summary: add new type of reconfigure
|
o changeset: 3539:b427b6bdeaa5
| user: Frederic Hecht <[email protected]>
| date: Sat Sep 26 21:11:08 2015 +0200
| summary: past version 3.40-2
|
o changeset: 3538:c4f51f314aad
| user: Frederic Hecht <[email protected]>
| date: Thu Sep 24 17:01:30 2015 +0200
| summary: correct missing lib in scotch under linux
|
o changeset: 3537:07259a5a4e0e
| user: Frederic Hecht <[email protected]>
| date: Thu Sep 24 16:22:44 2015 +0200
| summary: add missing file in distrib
|
o changeset: 3536:a9d12ed07ea7
|\ parent: 3411:c781eb8ce57c
| | parent: 3534:881b45305ed8
| | user: Antoine Le Hyaric
| | date: Thu Sep 24 16:11:29 2015 +0200
| | summary: Merged the FH default branch and the ALH default branch
| |
| | o changeset: 3535:b59688cb4b5d
| |/| branch: alh-dev
| | | parent: 3533:d43b2d014b9e
| | | parent: 3534:881b45305ed8
| | | user: Antoine Le Hyaric
| | | date: Thu Sep 24 09:01:54 2015 +0200
| | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | |
| o | changeset: 3534:881b45305ed8
| |\ \ parent: 3406:13168ad8d71f
| | | | parent: 3528:76d08fe3f802
| | | | user: Antoine Le Hyaric
| | | | date: Thu Sep 24 08:36:13 2015 +0200
| | | | summary: Keeping ALH and FH copies of default branch in sync
| | | |
| | | o changeset: 3533:d43b2d014b9e
| | | | branch: alh-dev
| | | | user: Antoine Le Hyaric
| | | | date: Tue Sep 22 17:25:13 2015 +0200
| | | | summary: partial commit on DebianTesting64 (I)
| | | |
| | | o changeset: 3532:ba876af7d882
| | | | branch: alh-dev
| | | | user: Antoine Le Hyaric
| | | | date: Mon Sep 07 16:40:54 2015 +0200
| | | | summary: partial commit on DebianTesting64 (I)
| | | |
| | | o changeset: 3531:a4bdeb73c50d
| | | | branch: alh-dev
| | | | user: Antoine Le Hyaric
| | | | date: Wed Sep 02 10:40:16 2015 +0200
| | | | summary: partial commit on DebianTesting64 (I)
| | | |
| | | o changeset: 3530:114625a77306
| | | | branch: alh-dev
| | | | user: Antoine Le Hyaric
| | | | date: Wed Sep 02 08:30:12 2015 +0200
| | | | summary: partial commit on DebianTesting64 (I)
| | | |
| | | o changeset: 3529:28e9a43463ef
| | | | branch: alh-dev
| | | | parent: 3527:9d9f408b0ed1
| | | | user: Antoine Le Hyaric
| | | | date: Wed Jul 29 17:45:41 2015 +0200
| | | | summary: partial commit on DebianTesting64 (I)
| | | |
| | o | changeset: 3528:76d08fe3f802
| | |\ \ parent: 3356:1249f08c0ad3
| | | | | parent: 3513:9445a5a26dc3
| | | | | user: Antoine Le Hyaric
| | | | | date: Tue Jul 28 16:56:09 2015 +0200
| | | | | summary: Keeping ALH and FH copies of default branch in sync
| | | | |
| | | | o changeset: 3527:9d9f408b0ed1
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Tue Jul 28 16:54:47 2015 +0200
| | | | | summary: > - synchronized lg.ypp with lg.tab.cpp
| | | | |
| | +---o changeset: 3526:3d9d97e1756a
| | | | | branch: alh-dev
| | | | | parent: 3525:9458da245f99
| | | | | parent: 3356:1249f08c0ad3
| | | | | user: Antoine Le Hyaric
| | | | | date: Tue Jul 28 10:46:25 2015 +0200
| | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | |
| | | | o changeset: 3525:9458da245f99
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Mon Jul 27 17:33:21 2015 +0200
| | | | | summary: partial commit on DebianTesting64 (I)
| | | | |
| | | | o changeset: 3524:5994d198cbdc
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Wed Jul 22 16:10:10 2015 +0200
| | | | | summary: partial commit on Win64 (PO)
| | | | |
| | | | o changeset: 3523:0f08eaf5eec4
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Sun Jul 19 15:55:50 2015 +0200
| | | | | summary: partial commit on DebianTesting64 (C)
| | | | |
| | | | o changeset: 3522:1328052b615d
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Sat Jul 18 23:04:26 2015 +0200
| | | | | summary: partial commit on Win64 ()
| | | | |
| | | | o changeset: 3521:a2642b5fa04b
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Sat Jul 11 17:31:21 2015 +0200
| | | | | summary: partial commit on DebianTesting64 (C)
| | | | |
| | | | o changeset: 3520:75a0efa2e172
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Fri Jul 10 23:54:45 2015 +0200
| | | | | summary: partial commit on DebianTesting64 (C)
| | | | |
| | | | o changeset: 3519:67d2ab03e7d2
| | | | | branch: alh-dev
| | | | | user: Antoine Le Hyaric
| | | | | date: Wed Jul 08 16:11:07 2015 +0200
| | | | | summary: partial commit on DebianTesting64 (I)
| | | | |
| | | | o changeset: 3518:abb8a3c63146
| | | | |\ branch: alh-dev
| | | | | | parent: 3515:e95b742e6339
| | | | | | parent: 3517:1e8532877a1b
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Wed Jul 08 10:46:36 2015 +0200
| | | | | | summary: partial commit on DebianTesting64 (I)
| | | | | |
| | | | | o changeset: 3517:1e8532877a1b
| | | | | | branch: alh-dev
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Tue Jun 02 10:34:45 2015 +0200
| | | | | | summary: partial commit on Win64 (PO)
| | | | | |
| | | | | o changeset: 3516:578a3c1466e3
| | | | | | branch: alh-dev
| | | | | | parent: 3511:d31258560420
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Tue May 26 10:36:24 2015 +0200
| | | | | | summary: partial commit on Win64 (PO)
| | | | | |
| | | | o | changeset: 3515:e95b742e6339
| | | | | | branch: alh-dev
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Wed Jul 08 09:32:25 2015 +0200
| | | | | | summary: partial commit on DebianTesting64 (I)
| | | | | |
| | | | o | changeset: 3514:cd0665d12a2a
| | | | | | branch: alh-dev
| | | | | | parent: 3512:e175b051fc94
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Tue Jun 30 17:09:48 2015 +0200
| | | | | | summary: partial commit on DebianTesting64 (I)
| | | | | |
| | | o | | changeset: 3513:9445a5a26dc3
| | | |\ \ \ parent: 3338:eb61b55cb4f9
| | | | | | | parent: 3509:7699be018dd0
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Tue Jun 23 21:13:47 2015 +0200
| | | | | | | summary: Merged new developments from FH into default branch
| | | | | | |
| | | | | o | changeset: 3512:e175b051fc94
| | | | | |/ branch: alh-dev
| | | | | | user: Antoine Le Hyaric
| | | | | | date: Tue Jun 23 18:46:16 2015 +0200
| | | | | | summary: partial commit on DebianTesting64 (I)
| | | | | |
| | | | | o changeset: 3511:d31258560420
| | | | | |\ branch: alh-dev
| | | | | | | parent: 3510:6a3a91ced187
| | | | | | | parent: 3508:e16f58a29385
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Wed May 13 14:45:39 2015 +0200
| | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | |
| | | | | | o changeset: 3510:6a3a91ced187
| | | | | | | branch: alh-dev
| | | | | | | parent: 3507:67bdddc2bb18
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Wed May 13 14:45:15 2015 +0200
| | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | |
| | | | o | | changeset: 3509:7699be018dd0
| | | | |\ \ \ parent: 3320:e8ea8202d9af
| | | | | | | | parent: 3488:cf704f8e9493
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Wed May 13 14:43:50 2015 +0200
| | | | | | | | summary: Merged the FH default branch and the ALH default branch
| | | | | | | |
| | | | +---o | changeset: 3508:e16f58a29385
| | | | | | |/ branch: alh-dev
| | | | | | | parent: 3507:67bdddc2bb18
| | | | | | | parent: 3320:e8ea8202d9af
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Wed May 13 14:41:29 2015 +0200
| | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | |
| | | | | | o changeset: 3507:67bdddc2bb18
| | | | | | | branch: alh-dev
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Thu Apr 16 12:04:16 2015 +0200
| | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | |
| | | | | | o changeset: 3506:3608a542a42f
| | | | | | |\ branch: alh-dev
| | | | | | | | parent: 3505:16150d47ef60
| | | | | | | | parent: 3504:7f6f7ce5c3d8
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Wed Apr 08 17:25:36 2015 +0200
| | | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | | |
| | | | | | | o changeset: 3505:16150d47ef60
| | | | | | | | branch: alh-dev
| | | | | | | | parent: 3503:1ef9cb993e3b
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Wed Apr 08 17:25:31 2015 +0200
| | | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | | |
| | | | | | o | changeset: 3504:7f6f7ce5c3d8
| | | | | | |\| branch: alh-dev
| | | | | | | | parent: 3501:b79d64d9ecca
| | | | | | | | parent: 3503:1ef9cb993e3b
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Tue Apr 07 16:19:59 2015 +0200
| | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | |
| | | | | | | o changeset: 3503:1ef9cb993e3b
| | | | | | | |\ branch: alh-dev
| | | | | | | | | parent: 3502:a5ffa6a4f051
| | | | | | | | | parent: 3493:94dee5017f35
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Tue Apr 07 16:18:47 2015 +0200
| | | | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | | | |
| | | | | | | | o changeset: 3502:a5ffa6a4f051
| | | | | | | | | branch: alh-dev
| | | | | | | | | parent: 3492:a4b394cf4eed
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Tue Apr 07 16:18:43 2015 +0200
| | | | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | | | |
| | | | | | o | | changeset: 3501:b79d64d9ecca
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Mon Apr 06 22:46:12 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3500:8f50e62a6a2e
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Mon Apr 06 00:12:39 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3499:3e0d22f530b0
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Sun Apr 05 14:08:17 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3498:00f52fb9f0d6
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Sun Apr 05 10:37:27 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3497:61d955f83d16
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Sat Apr 04 23:31:36 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3496:eea310d61bfa
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Sat Apr 04 16:58:59 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3495:aaf775e61d63
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Sat Apr 04 13:13:43 2015 +0200
| | | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | | |
| | | | | | o | | changeset: 3494:75c79e7faaed
| | | | | | |/ / branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Fri Apr 03 08:49:42 2015 +0200
| | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | |
| | | | | | o | changeset: 3493:94dee5017f35
| | | | | | |\| branch: alh-dev
| | | | | | | | parent: 3491:73c0cb877897
| | | | | | | | parent: 3492:a4b394cf4eed
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Thu Apr 02 16:20:10 2015 +0200
| | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | |
| | | | | | | o changeset: 3492:a4b394cf4eed
| | | | | | | | branch: alh-dev
| | | | | | | | parent: 3489:2dc0c17c4434
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Thu Apr 02 16:19:17 2015 +0200
| | | | | | | | summary: partial commit on Win64 (polypheme)
| | | | | | | |
| | | | | | o | changeset: 3491:73c0cb877897
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Thu Apr 02 07:43:25 2015 +0200
| | | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | | |
| | | | | | o | changeset: 3490:d62a301f9d44
| | | | | | |/ branch: alh-dev
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Tue Mar 31 21:28:19 2015 +0200
| | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | |
| | | | | | o changeset: 3489:2dc0c17c4434
| | | | | |/| branch: alh-dev
| | | | | | | parent: 3487:1e3215c149a1
| | | | | | | parent: 3488:cf704f8e9493
| | | | | | | user: Antoine Le Hyaric
| | | | | | | date: Tue Mar 31 12:11:06 2015 +0200
| | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | |
| | | | | o | changeset: 3488:cf704f8e9493
| | | | | |\ \ parent: 3289:e6ce11b08c23
| | | | | | | | parent: 3480:8f0b87c29d1e
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Tue Mar 31 12:10:02 2015 +0200
| | | | | | | | summary: Merged the FH default branch and the ALH default branch
| | | | | | | |
| | | | | +---o changeset: 3487:1e3215c149a1
| | | | | | | | branch: alh-dev
| | | | | | | | parent: 3486:98b78139b245
| | | | | | | | parent: 3289:e6ce11b08c23
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Tue Mar 31 11:59:03 2015 +0200
| | | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | | |
| | | | | | | o changeset: 3486:98b78139b245
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Mon Mar 30 13:03:49 2015 +0200
| | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | |
| | | | | | | o changeset: 3485:3c132b831fd2
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Sat Mar 28 23:31:43 2015 +0100
| | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | |
| | | | | | | o changeset: 3484:572a185187a3
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Sat Mar 28 19:56:05 2015 +0100
| | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | |
| | | | | | | o changeset: 3483:a0987e2e8bff
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Sat Mar 28 17:20:28 2015 +0100
| | | | | | | | summary: partial commit on Deb64 (caen)
| | | | | | | |
| | | | | | | o changeset: 3482:328e9949e096
| | | | | | | | branch: alh-dev
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Thu Mar 26 10:10:39 2015 +0100
| | | | | | | | summary: >
| | | | | | | |
| | | | | | | o changeset: 3481:090e4972a8e1
| | | | | | |/| branch: alh-dev
| | | | | | | | parent: 3479:fc78b68b3a41
| | | | | | | | parent: 3480:8f0b87c29d1e
| | | | | | | | user: Antoine Le Hyaric
| | | | | | | | date: Thu Mar 26 10:03:47 2015 +0100
| | | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | | |
| | | | | | o | changeset: 3480:8f0b87c29d1e
| | | | | | |\ \ parent: 3277:a76f9483f95d
| | | | | | | | | parent: 3475:d208401483c9
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Thu Mar 26 10:00:25 2015 +0100
| | | | | | | | | summary: merging
| | | | | | | | |
| | | | | | | | o changeset: 3479:fc78b68b3a41
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Thu Mar 26 09:58:18 2015 +0100
| | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | |
| | | | | | | | o changeset: 3478:3c4343e17faa
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Tue Mar 24 21:03:26 2015 +0100
| | | | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | | | |
| | | | | | | | o changeset: 3477:c69ba284e2ee
| | | | | | | | | branch: alh-dev
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Tue Mar 24 18:14:48 2015 +0100
| | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | |
| | | | | | | | o changeset: 3476:a5d3cfea597a
| | | | | | | |/| branch: alh-dev
| | | | | | | | | parent: 3474:b82f815dc898
| | | | | | | | | parent: 3475:d208401483c9
| | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | date: Tue Mar 24 17:39:28 2015 +0100
| | | | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | | | |
| | | | | | | o | changeset: 3475:d208401483c9
| | | | | | | |\ \ parent: 3470:93fd03a96b61
| | | | | | | | | | parent: 3261:abc1e0fd147e
| | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | date: Tue Mar 24 17:38:45 2015 +0100
| | | | | | | | | | summary: Merged changes from FH and ALH in default branch
| | | | | | | | | |
| | | | | | | | | o changeset: 3474:b82f815dc898
| | | | | | | | | | branch: alh-dev
| | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | date: Tue Mar 24 17:36:42 2015 +0100
| | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | |
| | | | | | | | | o changeset: 3473:67379783b4d4
| | | | | | | | | | branch: alh-dev
| | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | date: Mon Mar 23 11:37:49 2015 +0100
| | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | |
| | | | | | | | | o changeset: 3472:fa083ca9a392
| | | | | | | | | | branch: alh-dev
| | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | date: Mon Mar 23 07:19:41 2015 +0100
| | | | | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | | | | |
| | | | | | | | | o changeset: 3471:fb277d1ae48b
| | | | | | | | | | branch: alh-dev
| | | | | | | | | | parent: 3469:9b2ffacc4dd8
| | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | date: Sun Mar 22 22:16:48 2015 +0100
| | | | | | | | | | summary: partial commit on Deb64 (clipperton)
| | | | | | | | | |
| | | | | | | | o | changeset: 3470:93fd03a96b61
| | | | | | | | |\ \ parent: 3257:5c3838c8aa06
| | | | | | | | | | | parent: 3458:f97d91bba5dd
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Thu Mar 19 12:15:55 2015 +0100
| | | | | | | | | | | summary: Keeping ALH and FH copies of default branch in sync
| | | | | | | | | | |
| | | | | | | | +---o changeset: 3469:9b2ffacc4dd8
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | parent: 3468:ba1a484cde8c
| | | | | | | | | | | parent: 3257:5c3838c8aa06
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Thu Mar 19 12:10:33 2015 +0100
| | | | | | | | | | | summary: Merged updates from FH branch (default) into ALH branch (alh-dev)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3468:ba1a484cde8c
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Tue Mar 17 08:02:50 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3467:8e686101a615
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Mon Mar 16 16:34:34 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3466:0fc5faa718ce
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Sun Mar 15 21:23:20 2015 +0100
| | | | | | | | | | | summary: > - Added calls for Javascript graphical output along with postscript output
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3465:66312a5baca5
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Fri Mar 13 23:55:07 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (clipperton)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3464:909a440940d1
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Wed Mar 11 14:55:36 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3463:de5be5a65745
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Tue Mar 10 19:05:57 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (prelude)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3462:95d67f37925f
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Tue Mar 10 17:20:55 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3461:63c0df98b0c0
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Tue Mar 10 11:48:04 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3460:2544fa2392a3
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Tue Mar 10 11:00:33 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | | o changeset: 3459:3954d9cae466
| | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | parent: 3457:4520e31cf41a
| | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | date: Mon Mar 09 16:41:03 2015 +0100
| | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | |
| | | | | | | | | o | changeset: 3458:f97d91bba5dd
| | | | | | | | | |\ \ parent: 3204:24487fc19570
| | | | | | | | | | | | parent: 3454:7817ee9b6186
| | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | date: Thu Mar 05 09:23:09 2015 +0100
| | | | | | | | | | | | summary: Merging mods from FH and ALH in default branch
| | | | | | | | | | | |
| | | | | | | | | +---o changeset: 3457:4520e31cf41a
| | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | parent: 3456:83b4b555fa6e
| | | | | | | | | | | | parent: 3204:24487fc19570
| | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | date: Thu Mar 05 09:21:58 2015 +0100
| | | | | | | | | | | | summary: Merging mods from FH tree into ALH tree
| | | | | | | | | | | |
| | | | | | | | | | | o changeset: 3456:83b4b555fa6e
| | | | | | | | | | |/| branch: alh-dev
| | | | | | | | | | | | parent: 3455:1df94e75bfc8
| | | | | | | | | | | | parent: 3454:7817ee9b6186
| | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | date: Thu Mar 05 09:20:13 2015 +0100
| | | | | | | | | | | | summary: merging
| | | | | | | | | | | |
| | | | | | | | | | | o changeset: 3455:1df94e75bfc8
| | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | parent: 3453:a325f224bd20
| | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | date: Thu Mar 05 09:15:39 2015 +0100
| | | | | | | | | | | | summary: merging
| | | | | | | | | | | |
| | | | | | | | | | o | changeset: 3454:7817ee9b6186
| | | | | | | | | | |\ \ parent: 3202:f8b54b5a5eb0
| | | | | | | | | | | | | parent: 3451:ccb221ccbaf0
| | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | date: Tue Mar 03 16:39:36 2015 +0100
| | | | | | | | | | | | | summary: Keeping in sync with FH's tree
| | | | | | | | | | | | |
| | | | | | | | | | | | o changeset: 3453:a325f224bd20
| | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | date: Tue Mar 03 16:37:17 2015 +0100
| | | | | | | | | | | | | summary: partial commit on Deb64 (iliade)
| | | | | | | | | | | | |
| | | | | | | | | | | | o changeset: 3452:38b3e4c6b180
| | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | parent: 3450:a5ee5fe17cc5
| | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | date: Mon Mar 02 15:21:53 2015 +0100
| | | | | | | | | | | | | summary: Copied new developments from FFCS into FF (ffforcs)
| | | | | | | | | | | | |
| | | | | | | | | | | o | changeset: 3451:ccb221ccbaf0
| | | | | | | | | | | |\ \ parent: 3157:83f4a2ab0c5f
| | | | | | | | | | | | | | parent: 3449:716f8a159f45
| | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | date: Thu Feb 12 15:26:01 2015 +0100
| | | | | | | | | | | | | | summary: Keeping ALH and FH trees in sync
| | | | | | | | | | | | | |
| | | | | | | | | | | +---o changeset: 3450:a5ee5fe17cc5
| | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | parent: 3446:dddb8e0a6832
| | | | | | | | | | | | | | parent: 3157:83f4a2ab0c5f
| | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | date: Thu Feb 12 15:13:40 2015 +0100
| | | | | | | | | | | | | | summary: Merged new FF developments from alh-dev and default branches (ffforcs)
| | | | | | | | | | | | | |
| | | | | | | | | | | | o | changeset: 3449:716f8a159f45
| | | | | | | | | | | | |\ \ parent: 3128:084f6138edba
| | | | | | | | | | | | | | | parent: 3448:c1108b59f900
| | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | date: Wed Jan 28 17:42:09 2015 +0100
| | | | | | | | | | | | | | | summary: Forwarding ALH changes in default branch
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | o | changeset: 3448:c1108b59f900
| | | | | | | | | | | | | |\ \ parent: 3447:505c96cf2e1a
| | | | | | | | | | | | | | | | parent: 3101:fb9b853f36b3
| | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | date: Mon Dec 01 16:28:56 2014 +0100
| | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (iliade)
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | o | changeset: 3447:505c96cf2e1a
| | | | | | | | | | | | | | |\ \ parent: 3441:1e2a350fd023
| | | | | | | | | | | | | | | | | parent: 3096:e5f2eccb8503
| | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | date: Mon Nov 17 17:17:43 2014 +0100
| | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (iliade)
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | +-------o changeset: 3446:dddb8e0a6832
| | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | parent: 3445:394791c89803
| | | | | | | | | | | | | | | | | parent: 3128:084f6138edba
| | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | date: Wed Jan 28 16:28:17 2015 +0100
| | | | | | | | | | | | | | | | | summary: Merged new FF developments from alh-dev and default branches (ffforcs)
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | o changeset: 3445:394791c89803
| | | | | | | | | | | | | | | | |\ branch: alh-dev
| | | | | | | | | | | | | | | | | | parent: 3443:d89e1bb82ea5
| | | | | | | | | | | | | | | | | | parent: 3444:4f600f1f9f01
| | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | date: Wed Jan 28 16:22:58 2015 +0100
| | | | | | | | | | | | | | | | | | summary: Merged new FF developments from alh-dev and from FFCS (ffforcs)
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | o changeset: 3444:4f600f1f9f01
| | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | parent: 3442:cd02ce37d2b9
| | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | date: Wed Jan 28 16:22:50 2015 +0100
| | | | | | | | | | | | | | | | | | summary: Copied new developments from FFCS into FF (ffforcs)
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | o | changeset: 3443:d89e1bb82ea5
| | | | | | | | | | | | | | | | |/ branch: alh-dev
| | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | date: Mon Nov 17 17:17:21 2014 +0100
| | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (iliade)
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | o changeset: 3442:cd02ce37d2b9
| | | | | | | | | | | | | | | |/| branch: alh-dev
| | | | | | | | | | | | | | | | | parent: 3437:6f3cd1174427
| | | | | | | | | | | | | | | | | parent: 3441:1e2a350fd023
| | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | date: Thu Oct 16 17:22:09 2014 +0200
| | | | | | | | | | | | | | | | | summary: Merged default branch into alh-dev branch
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | o | changeset: 3441:1e2a350fd023
| | | | | | | | | | | | | | | |\ \ parent: 3070:50157156eec4
| | | | | | | | | | | | | | | | | | parent: 3440:512d5c6abecd
| | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | date: Thu Oct 16 11:14:56 2014 +0200
| | | | | | | | | | | | | | | | | | summary: Merged SuiteSparse download address change into default Mercurial branch
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | o | changeset: 3440:512d5c6abecd
| | | | | | | | | | | | | | | | |\ \ parent: 3439:d92e04353de4
| | | | | | | | | | | | | | | | | | | parent: 3058:2d9d48374ec8
| | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | date: Tue Sep 16 16:00:11 2014 +0200
| | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (iliade)
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | o | changeset: 3439:d92e04353de4
| | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | date: Tue Sep 16 15:59:15 2014 +0200
| | | | | | | | | | | | | | | | | | | summary: changed SuiteSparse download address
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | o | changeset: 3438:cf1a2c64839d
| | | | | | | | | | | | | | | | | |\ \ parent: 3021:796a520a31f6
| | | | | | | | | | | | | | | | | | | | parent: 3433:4eb3fbec8349
| | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | date: Mon Jun 30 15:37:38 2014 +0200
| | | | | | | | | | | | | | | | | | | | summary: new -h inline help option in download/getall script
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | +-------o changeset: 3437:6f3cd1174427
| | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | parent: 3436:fda96b345bfd
| | | | | | | | | | | | | | | | | | | | parent: 3070:50157156eec4
| | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | date: Wed Oct 15 16:41:06 2014 +0200
| | | | | | | | | | | | | | | | | | | | summary: Merged new FF developments from alh-dev and default branches
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | o changeset: 3436:fda96b345bfd
| | | | | | | | | | | | | | | | | | | |\ branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | parent: 3434:daac0627cde5
| | | | | | | | | | | | | | | | | | | | | parent: 3435:4936a7daf008
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Wed Oct 15 16:38:19 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: Merged new FF developments from alh-dev and from FFCS
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o changeset: 3435:4936a7daf008
| | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | parent: 3432:d77f894b9a0c
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Wed Oct 15 16:28:58 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: Copied new developments from FFCS into FF
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | o | changeset: 3434:daac0627cde5
| | | | | | | | | | | | | | | | | | | |/ branch: alh-dev
| | | | | | | | | | | | | | | | | | | | parent: 3432:d77f894b9a0c
| | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | date: Tue Oct 14 16:31:35 2014 +0200
| | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (iliade)
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | o | changeset: 3433:4eb3fbec8349
| | | | | | | | | | | | | | | | | | |\ \ parent: 3013:bdf2b6da5050
| | | | | | | | | | | | | | | | | | | | | parent: 3429:1f54a255a8a8
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Wed May 07 14:37:53 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: Synchronizing FH and ALH trees
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o changeset: 3432:d77f894b9a0c
| | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Wed May 07 14:36:20 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o changeset: 3431:191d7c9c9b07
| | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Tue May 06 16:46:47 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | +---o changeset: 3430:bf9f9ac5854c
| | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | parent: 3428:487f77ed22e1
| | | | | | | | | | | | | | | | | | | | | parent: 3013:bdf2b6da5050
| | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | date: Tue May 06 16:13:44 2014 +0200
| | | | | | | | | | | | | | | | | | | | | summary: Pulling changes from branch default (FH) to branch alh-dev (ALH)
| | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | o | changeset: 3429:1f54a255a8a8
| | | | | | | | | | | | | | | | | | | |\ \ parent: 2994:281a9fa7e47e
| | | | | | | | | | | | | | | | | | | | | | parent: 3426:708273582a08
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Thu Apr 03 14:49:57 2014 +0200
| | | | | | | | | | | | | | | | | | | | | | summary: > (ALH)
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o changeset: 3428:487f77ed22e1
| | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Thu Apr 10 17:22:41 2014 +0200
| | | | | | | | | | | | | | | | | | | | | | summary: > - Corrected --disable-pdf configuration option (useful for FFCS build)
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | +---o changeset: 3427:34cbe12d7ef9
| | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | parent: 3425:571f60356b59
| | | | | | | | | | | | | | | | | | | | | | parent: 2994:281a9fa7e47e
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Wed Apr 09 15:12:15 2014 +0200
| | | | | | | | | | | | | | | | | | | | | | summary: Pulled updates from FH tree to ALH tree
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | changeset: 3426:708273582a08
| | | | | | | | | | | | | | | | | | | | | | parent: 3423:aa5cf7357633
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Mon Mar 10 16:52:11 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | summary: [[file:download/getall]] now checks downloaded packages against known MD5 values
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o changeset: 3425:571f60356b59
| | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 27 17:42:00 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o changeset: 3424:7c8639613590
| | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | parent: 3422:5ad72f5e2e0f
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 26 17:01:15 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | changeset: 3423:aa5cf7357633
| | | | | | | | | | | | | | | | | | | | | | parent: 3420:3d1ae8147ee4
| | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 13 11:33:17 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o changeset: 3422:5ad72f5e2e0f
| | | | | | | | | | | | | | | | | | | | | |\ branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | | parent: 3421:d2476b3e1145
| | | | | | | | | | | | | | | | | | | | | | | parent: 3416:ae9f19f20d2c
| | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 13 11:33:16 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | o changeset: 3421:d2476b3e1145
| | | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | | parent: 3413:6ae61b1b61d1
| | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 13 11:33:14 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | summary: > - (ALH)
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | | changeset: 3420:3d1ae8147ee4
| | | | | | | | | | | | | | | | | | | | |\ \ \ parent: 3419:60462b01e312
| | | | | | | | | | | | | | | | | | | | | | | | parent: 3418:4b88f0e6d049
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 12 18:14:46 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting32 (buis)
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o | | changeset: 3419:60462b01e312
| | | | | | | | | | | | | | | | | | | | | | | | parent: 3415:3df2153ee265
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 12 18:14:22 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: Enabled downloading packages without threads
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | | | changeset: 3418:4b88f0e6d049
| | | | | | | | | | | | | | | | | | | | |\| | | parent: 3417:8e1b204a682d
| | | | | | | | | | | | | | | | | | | | | | | | parent: 3415:3df2153ee265
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 12 16:54:17 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | | | changeset: 3417:8e1b204a682d
| | | | | | | | | | | | | | | | | | | | | | | | parent: 3414:440aa47143e3
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 12 16:47:08 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: Corrections for ffcs-src.tgz standalone compilation
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | o | changeset: 3416:ae9f19f20d2c
| | | | | | | | | | | | | | | | | | | | | | |/ branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | | parent: 3413:6ae61b1b61d1
| | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 13 10:36:39 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting32 (buis)
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | o | changeset: 3415:3df2153ee265
| | | | | | | | | | | | | | | | | | | | |/| | parent: 3414:440aa47143e3
| | | | | | | | | | | | | | | | | | | | | | | parent: 2947:934199f05868
| | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Feb 12 16:31:51 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | summary: Keeping ALH and FH trees in sync
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | o | | changeset: 3414:440aa47143e3
| | | | | | | | | | | | | | | | | | | | | | | parent: 2937:4c7506b5ac6c
| | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 06 18:02:28 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | o changeset: 3413:6ae61b1b61d1
| | | | | | | | | | | | | | | | | | | | | | |\ branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | | | parent: 3412:0f9bc2587171
| | | | | | | | | | | | | | | | | | | | | | | | parent: 2946:e0c1f8669ab4
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Tue Feb 11 11:46:48 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: Imported changes from default branch to alh-dev
| | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | | | | | o changeset: 3412:0f9bc2587171
| | | | | | | | | | | | | | | | | | | | | | | | branch: alh-dev
| | | | | | | | | | | | | | | | | | | | | | | | parent: 2943:0aa8d880b527
| | | | | | | | | | | | | | | | | | | | | | | | user: Antoine Le Hyaric
| | | | | | | | | | | | | | | | | | | | | | | | date: Thu Feb 06 18:02:10 2014 +0100
| | | | | | | | | | | | | | | | | | | | | | | | summary: partial commit on DebianTesting64 (odyssee)
| | | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | | changeset: 3411:c781eb8ce57c
| | | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | | date: Thu Sep 24 15:40:40 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | | summary: romve extra file not used
| | | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | | changeset: 3410:dddbcdd26a7d
| | | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | | date: Thu Sep 24 15:38:17 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | | summary: clean hpddm dir
| | | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | | changeset: 3409:fe6174259fc3
| | | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | | date: Thu Sep 24 15:24:38 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | | summary: remove used file
| | | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | | changeset: 3408:b0b2a4200992
| | | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | | date: Thu Sep 24 15:19:25 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | | summary: correct diffusion and comment buggus elasticity-3d.edp
| | | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | | changeset: 3407:b60857f29977
|/ / / / / / / / / / / / / / / / / / / / / / / user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 18:08:51 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: correct FreeFeM++.app
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3406:13168ad8d71f
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 16:54:24 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: pass to 3.40-1 for hpddm
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3405:17d6529f7b6f
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 16:34:50 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: coorect typ in build FreeFem++-CoCoa for apple
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3404:ce04f087b9ff
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 16:30:23 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: coorect hppdm
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3403:7611cdfa7e7e
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 11:52:16 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: coorect petsc find
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3402:017766c795d0
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 11:18:35 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: add missing file
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3401:b44dc478ef23
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 23 11:08:04 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: add missing file add correct configure
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3400:4dbbf7ec619b
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Tue Sep 22 13:50:47 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: coorect pb on scalapack and mkl under mac
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3399:2f5fc0ecaaa0
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Mon Sep 21 16:59:13 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: correct hpddm make new example dir
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3398:8bd16241624e
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Sun Sep 20 15:43:13 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: pass to scotch version 6.0.4
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3397:99cef5d97e5e
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Wed Sep 16 20:22:48 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: coorect doc (typo) en add comment on array of array , array of full matrix
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3396:75309564db35
| | | | | | | | | | | | | | | | | | | | | | | user: Frederic Hecht <[email protected]>
| | | | | | | | | | | | | | | | | | | | | | | date: Tue Sep 15 20:00:55 2015 +0200
| | | | | | | | | | | | | | | | | | | | | | | summary: correct acmpi.m4 in case of -isysroot /blabla compile option
| | | | | | | | | | | | | | | | | | | | | | |
o | | | | | | | | | | | | | | | | | | | | | | changeset: 3395:c16b507eade5