-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3385 lines (2472 loc) · 96.4 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
Fri Jul 20 16:20:35 EDT 2012 stevenj@alum.mit.edu
* document CCSA
M ./mma/README -1 +15
Fri Jul 20 16:14:33 EDT 2012 stevenj@alum.mit.edu
* added CCSAQ to man page
M ./api/nlopt.3 -2 +5
Fri Jul 20 14:19:42 EDT 2012 stevenj@alum.mit.edu
* add mingw64 script
A ./BUILD-MINGW64.sh
Fri Jul 20 14:13:45 EDT 2012 stevenj@alum.mit.edu
* version bump for 2.3
M ./COPYRIGHT -1 +1
M ./NEWS +21
M ./api/deprecated.c -1 +1
M ./api/f77api.c -1 +1
M ./api/f77funcs.h -1 +1
M ./api/f77funcs_.h -1 +1
M ./api/general.c -1 +1
M ./api/nlopt-internal.h -1 +1
M ./api/nlopt.3 -1 +1
M ./api/nlopt.h -1 +1
M ./api/nlopt_minimize_constrained.3 -1 +1
M ./api/optimize.c -1 +1
M ./api/options.c -1 +1
M ./auglag/auglag.h -1 +1
M ./cdirect/cdirect.c -1 +1
M ./cdirect/cdirect.h -1 +1
M ./cdirect/hybrid.c -1 +1
M ./configure.ac -2 +2
M ./cquad/cquad.h -1 +1
M ./crs/crs.c -1 +1
M ./crs/crs.h -1 +1
M ./isres/isres.h -1 +1
M ./mlsl/mlsl.c -1 +1
M ./mlsl/mlsl.h -1 +1
M ./mma/ccsa_quadratic.c -1 +1
M ./mma/mma.c -1 +1
M ./mma/mma.h -1 +1
M ./neldermead/neldermead.h -1 +1
M ./neldermead/nldrmd.c -1 +1
M ./neldermead/sbplx.c -1 +1
M ./newuoa/newuoa.c -1 +1
M ./octave/nlopt_optimize-mex.c -1 +1
M ./octave/nlopt_optimize-oct.cc -1 +1
M ./util/nlopt-util.h -1 +1
M ./util/qsort_r.c -1 +1
M ./util/redblack.c -1 +1
M ./util/redblack.h -1 +1
M ./util/redblack_test.c -1 +1
M ./util/rescale.c -1 +1
M ./util/stop.c -1 +1
M ./util/timer.c -1 +1
Fri Jul 20 14:04:19 EDT 2012 stevenj@alum.mit.edu
* just unconditionally disable compilation of matlab & octave plugins unless --enable-shared is turned on, since test was unreliable and the 32-bit systems where static libraries worked are disappearing anyway
M ./configure.ac -28
Mon Jan 16 09:49:19 EST 2012 stevenj@alum.mit.edu
* in Matlab/Octave interface, make returning NaN from the objective equivalent to an nlopt_force_stop; thanks to Norman Violet for the suggestion
M ./octave/nlopt_optimize-mex.c +6
M ./octave/nlopt_optimize-oct.cc -1 +5
Wed Dec 7 21:00:30 EST 2011 stevenj@alum.mit.edu
* bug fix to convergence test (only relevant to sbplx); thanks to Douglas Bates
M ./neldermead/nldrmd.c -1 +1
Mon Nov 28 17:42:47 EST 2011 stevenj@alum.mit.edu
* CCSA trust-region problem should use dual_opt parameters (= user local_optim params, if any)
M ./mma/ccsa_quadratic.c -3 +5
Mon Nov 28 14:09:23 EST 2011 stevenj@alum.mit.edu
* fix maximization with preconditioner (passed wrong data)
M ./api/optimize.c -1 +1
Sun Nov 27 14:20:58 EST 2011 stevenj@alum.mit.edu
* return roundoff-limited for cobyla in this case
M ./cobyla/cobyla.c -1 +1
Sat Nov 26 14:54:13 EST 2011 stevenj@alum.mit.edu
* lower tolerance for dual optimization in MMA/CCSAQ; thanks to Christophe Leruste for the problem report
M ./api/optimize.c -1 +1
Sat Nov 26 14:45:06 EST 2011 stevenj@alum.mit.edu
* use reciprocal quadratic formula, which is accurate everywhere, rather than switching between quadratic formula and Taylor expansion
M ./mma/mma.c -7 +4
Wed Nov 23 14:33:10 EST 2011 stevenj@alum.mit.edu
* detect null preconditioner when maximizing
M ./api/optimize.c -1 +2
Wed Nov 23 14:09:39 EST 2011 stevenj@alum.mit.edu
* missing file
A ./octave/NLOPT_LD_SLSQP.m
Wed Nov 16 14:20:13 EST 2011 stevenj@alum.mit.edu
* bug fix in preconditioned CCSA
M ./mma/ccsa_quadratic.c -4 +4
Tue Nov 15 18:07:34 EST 2011 stevenj@alum.mit.edu
* bug in timer, thanks to William Vaughn for the patch
M ./util/timer.c -1 +1
Tue Nov 15 17:49:45 EST 2011 stevenj@alum.mit.edu
* added NLOPT_LD_CCSAQ matlab constant
M ./octave/Makefile.am -1 +1
A ./octave/NLOPT_LD_CCSAQ.m
Tue Nov 15 17:47:59 EST 2011 stevenj@alum.mit.edu
* added prototype matlab precond interface (for objective only)
M ./octave/nlopt_optimize-mex.c -8 +61
Tue Nov 15 17:19:29 EST 2011 stevenj@alum.mit.edu
* added (untested) interface for specifying preconditioners
M ./api/nlopt-internal.h +1
M ./api/nlopt.h -4 +13
M ./api/optimize.c -7 +16
M ./api/options.c -16 +55
M ./mma/ccsa_quadratic.c -15 +33
M ./mma/mma.h -2 +1
M ./util/nlopt-util.h +1
Tue Nov 15 16:14:09 EST 2011 stevenj@alum.mit.edu
* added CCSAQ algorithm; internal support for preconditioners (untested) not yet exported in NLopt API
M ./api/general.c +1
M ./api/nlopt.h +7
M ./api/optimize.c -3 +9
M ./api/options.c -1 +1
M ./mma/Makefile.am -1 +1
A ./mma/ccsa_quadratic.c
M ./mma/mma.h +13
Tue Nov 15 15:41:17 EST 2011 stevenj@alum.mit.edu
* when adding mconstraints, allow tol==NULL as synonym for zero tolerances
M ./api/options.c -3 +7
Thu Jun 9 16:11:13 EDT 2011 stevenj@alum.mit.edu
* version bump to 2.2.4
M ./NEWS +5
M ./configure.ac -2 +2
Thu Jun 9 13:26:14 EDT 2011 stevenj@alum.mit.edu
* --with-cxx should not use -no-undefined, since it deppends on the C++ std libs (which prevents us from building --with-cxx libs for Windows); thanks to Volker Lorrmann for the bug report
M ./Makefile.am +4
Thu Jun 9 12:34:27 EDT 2011 stevenj@alum.mit.edu
* guile and python libs will NOT have no undefined symbols, since they refer to things in the guile and python shared libraries, respectively
M ./swig/Makefile.am -2 +2
Wed Jun 8 13:28:57 EDT 2011 stevenj@alum.mit.edu
tagged nlopt-2.2.3
Wed Jun 8 13:23:00 EDT 2011 stevenj@alum.mit.edu
* whoops, missed one static variable in luksan; thanks to Gert Wollny for the bug report
M ./luksan/luksan.h -1 +1
M ./luksan/pssubs.c -3 +3
Wed Jun 8 13:21:27 EDT 2011 stevenj@alum.mit.edu
* version bump to 2.2.3
M ./NEWS +8
M ./configure.ac -2 +2
Thu May 26 14:20:41 EDT 2011 stevenj@alum.mit.edu
* F77 api for upper-case linkage should use set/get vector_storage, not subspace_dim
M ./api/f77funcs_.h -1 +1
Thu May 26 13:59:32 EDT 2011 stevenj@alum.mit.edu
tagged nlopt-2.2.2
Thu May 26 13:50:54 EDT 2011 stevenj@alum.mit.edu
* copyright year bump
M ./COPYING -1 +1
M ./COPYRIGHT -1 +1
M ./api/deprecated.c -1 +1
M ./api/f77api.c -1 +1
M ./api/f77funcs.h -1 +1
M ./api/f77funcs_.h -1 +1
M ./api/general.c -1 +1
M ./api/nlopt-in.hpp -1 +1
M ./api/nlopt-internal.h -1 +1
M ./api/nlopt.3 -1 +1
M ./api/nlopt.h -1 +1
M ./api/nlopt_minimize_constrained.3 -1 +1
M ./api/optimize.c -1 +1
M ./api/options.c -1 +1
M ./auglag/auglag.h -1 +1
M ./cdirect/cdirect.c -1 +1
M ./cdirect/cdirect.h -1 +1
M ./cdirect/hybrid.c -1 +1
M ./cquad/cquad.h -1 +1
M ./crs/crs.c -1 +1
M ./crs/crs.h -1 +1
M ./isres/isres.h -1 +1
M ./mlsl/mlsl.c -1 +1
M ./mlsl/mlsl.h -1 +1
M ./mma/mma.c -1 +1
M ./mma/mma.h -1 +1
M ./neldermead/neldermead.h -1 +1
M ./neldermead/nldrmd.c -1 +1
M ./neldermead/sbplx.c -1 +1
M ./newuoa/COPYRIGHT -1 +1
M ./newuoa/newuoa.c -1 +1
M ./octave/nlopt_optimize-mex.c -1 +1
M ./octave/nlopt_optimize-oct.cc -1 +1
M ./test/testopt.cpp -1 +1
M ./util/nlopt-util.h -1 +1
M ./util/qsort_r.c -1 +1
M ./util/redblack.c -1 +1
M ./util/redblack.h -1 +1
M ./util/redblack_test.c -1 +1
M ./util/rescale.c -1 +1
M ./util/stop.c -1 +1
M ./util/timer.c -1 +1
Thu May 26 13:48:15 EDT 2011 stevenj@alum.mit.edu
* version bump to 2.2.2, updated NEWS
M ./NEWS -1 +8
M ./configure.ac -2 +2
Thu May 26 13:42:13 EDT 2011 stevenj@alum.mit.edu
* report correct count in test program
M ./test/testopt.cpp +1
Thu May 26 13:37:17 EDT 2011 stevenj@alum.mit.edu
* use elimdim in StoGO
M ./api/optimize.c -8 +29
Wed May 25 15:19:57 EDT 2011 stevenj@alum.mit.edu
* make luksan routines re-entrant; thanks to Gert Wollny for the bug report (fixes gentoo bug #368685)
M ./luksan/luksan.h -1 +6
M ./luksan/plip.c -1 +3
M ./luksan/plis.c -1 +3
M ./luksan/pnet.c -1 +3
M ./luksan/pssubs.c -3 +17
Tue Mar 29 18:59:57 EDT 2011 stevenj@alum.mit.edu
* bug fix in cdirect -- typo caused slope to be underestimated in some cases, and will miss some potentially optimal rectangles. Thanks to Sinisa Hristov for the bug report
M ./cdirect/cdirect.c -1 +1
Tue Mar 22 16:13:21 EDT 2011 stevenj@alum.mit.edu
* draft NEWS for 2.2.2
M ./NEWS +21
Tue Mar 22 16:13:00 EDT 2011 stevenj@alum.mit.edu
* fixes to windows setup.py; thanks to Robert G for the patch
M ./BUILD-MINGW.sh +2
Mon Mar 7 14:37:28 EST 2011 stevenj@alum.mit.edu
* use elimdim for praxis, nelder mead, and sbplx
M ./api/optimize.c -1 +4
Mon Mar 7 14:23:50 EST 2011 stevenj@alum.mit.edu
* check for ub - lb small case for potential minimizers
M ./mlsl/mlsl.c -1 +2
Wed Mar 2 19:03:54 EST 2011 stevenj@alum.mit.edu
* elimdim wrappers to handle lb==ub in derivative-free routines (for which it is inconvenient to handle this case directly in the algorithm)
M ./api/optimize.c -1 +212
Wed Mar 2 16:08:57 EST 2011 stevenj@alum.mit.edu
* comment typo
M ./util/nlopt-util.h -1 +1
Sat Feb 12 21:53:21 EST 2011 stevenj@alum.mit.edu
* handle lb == ub in MMA (bugfix)
M ./mma/mma.c +5
Sat Feb 12 20:58:59 EST 2011 stevenj@alum.mit.edu
* -b option to fix some params by equating the bounds
M ./test/testopt.cpp -1 +30
Thu Jan 13 10:22:48 EST 2011 stevenj@alum.mit.edu
* add missing xtol check to SLSQP (which caused an erroneeous roundoff_limited return code); thanks to Alexander Riess for the bug report
M ./slsqp/slsqp.c -2 +9
Thu Jan 13 10:14:30 EST 2011 stevenj@alum.mit.edu
* in slsqp make sure that we count only function evals and not other callback steps
M ./slsqp/slsqp.c -1 +2
Tue Dec 7 15:18:02 EST 2010 stevenj@alum.mit.edu
* deprecated API should support xtol_abs==NULL (for 0 tol) for backward compatibility
M ./api/deprecated.c -1 +1
Sat Nov 20 13:44:03 EST 2010 stevenj@alum.mit.edu
* default to mf=10 in luksan codes, like in Fortran, not mf=4, and remove pointless -5 from maxeval upper bound, and remove FIXME since this is now user-settable
M ./luksan/plip.c -9 +2
M ./luksan/plis.c -9 +2
M ./luksan/pnet.c -9 +2
Sat Nov 20 13:37:59 EST 2010 stevenj@alum.mit.edu
* rename subspace_dim to vector_storage, since not necessarily a subspace (and can be > n)
M ./api/f77funcs_.h -1 +1
M ./api/nlopt-in.hpp -1 +1
M ./api/nlopt-internal.h -1 +1
M ./api/nlopt.h -2 +2
M ./api/optimize.c -3 +3
M ./api/options.c -2 +2
M ./octave/nlopt_optimize-mex.c -1 +1
M ./octave/nlopt_optimize-oct.cc -1 +1
M ./swig/nlopt-exceptions.i -1 +1
Thu Nov 18 18:42:23 EST 2010 stevenj@alum.mit.edu
* add get/set subspace dimension for low-storage quasi-Newton methods
M ./api/f77funcs_.h +1
M ./api/nlopt-in.hpp +1
M ./api/nlopt-internal.h +1
M ./api/nlopt.h +3
M ./api/optimize.c -4 +7
M ./api/options.c +2
M ./luksan/luksan.h -1 +4
M ./luksan/plip.c -4 +6
M ./luksan/plis.c -5 +7
M ./luksan/pnet.c -4 +6
M ./octave/nlopt_optimize-mex.c +1
M ./octave/nlopt_optimize-oct.cc +1
M ./swig/nlopt-exceptions.i -1 +2
Thu Oct 28 19:04:31 EDT 2010 stevenj@alum.mit.edu
* update TODO
M ./TODO +8
Thu Oct 28 19:00:02 EDT 2010 stevenj@alum.mit.edu
* fix support for maxtime in Luksan algorithms and ORIG_DIRECT; thanks to Jurgen Werner for the bug report
M ./api/optimize.c -2 +6
M ./cobyla/cobyla.c -2 +4
M ./direct/DIRect.c -2 +7
M ./direct/DIRsubrout.c -1 +9
M ./direct/direct-internal.h -2 +4
M ./direct/direct.h -1 +3
M ./direct/direct_wrap.c -1 +3
M ./luksan/plip.c -1 +2
M ./luksan/plis.c -1 +2
M ./luksan/pnet.c +2
M ./newuoa/newuoa.c -2 +4
M ./util/nlopt-util.h +1
M ./util/stop.c -1 +6
Sat Oct 16 17:00:36 EDT 2010 stevenj@alum.mit.edu
* include nlopt_optimize_usage.h in dist tarball, for Windows users; thanks to Per-Olaf Sturesson for the suggestion
M ./octave/Makefile.am -1 +4
Mon Sep 6 14:02:37 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.2.1
Mon Sep 6 14:01:28 EDT 2010 stevenj@alum.mit.edu
* updated NEWS for 2.2.1
M ./NEWS -1 +6
Mon Sep 6 13:56:43 EDT 2010 stevenj@alum.mit.edu
* add missing Windows exporting junk for nlopt_algorithm_name; thanks to Ofek Shilon for the bug report
M ./api/general.c -1 +1
M ./api/nlopt.h -1 +1
Tue Aug 31 21:18:27 EDT 2010 stevenj@alum.mit.edu
* fix compiler warnings about prototype mismatches in options.c; thanks to Benoit Scherrer
M ./api/nlopt.h -3 +3
M ./api/options.c -3 +3
M ./util/stop.c -2 +2
Mon Aug 30 19:55:48 EDT 2010 stevenj@alum.mit.edu
* add missing "inline" keywords to C++ functions so that nlopt.hpp can be included in multiple compilation units; thanks to Steve Jaffe for the bug report
M ./api/nlopt-in.hpp -7 +7
Thu Aug 19 03:36:43 EDT 2010 stevenj@alum.mit.edu
* fixed bug in set/get xtol_abs, thanks to David Rivest-H[_\c3_][_\a9_]nault for the bug report
M ./api/options.c -2 +2
Fri Aug 13 13:39:59 EDT 2010 stevenj@alum.mit.edu
* updated NEWS for 2.2.1
M ./NEWS -1 +4
Fri Aug 13 13:35:48 EDT 2010 stevenj@alum.mit.edu
* max/min macros are already defined(!) by stdlib.h(!) in visual studio; thanks to Benoit Scherrer for the report about the compiler warning
M ./bobyqa/bobyqa.c -59 +59
M ./cobyla/cobyla.c -35 +34
M ./luksan/mssubs.c -2 +2
M ./luksan/plip.c -14 +14
M ./luksan/plis.c -17 +17
M ./luksan/pnet.c -18 +18
M ./luksan/pssubs.c -33 +33
M ./newuoa/newuoa.c -15 +15
M ./slsqp/slsqp.c -32 +32
M ./subplex/subplex.c -29 +28
Thu Aug 5 15:49:18 EDT 2010 stevenj@alum.mit.edu
* version bump to 2.2.1
M ./NEWS +20
M ./configure.ac -2 +2
Fri Jul 30 10:35:20 EDT 2010 stevenj@alum.mit.edu
* NLOPT_DLL_EXPORT option to compile with MS dllexport flag, thanks to Benoit for the suggestion
M ./api/nlopt.h -1 +5
Fri Jul 30 10:34:25 EDT 2010 stevenj@alum.mit.edu
* update: Nocedal code is available under GPL
M ./lbfgs/README -1 +10
Thu Jul 29 22:35:46 EDT 2010 stevenj@alum.mit.edu
* handle missing C99/IEEE copysign function, e.g. for WWin32; thanks to Benoit Scherrer for the bug report
M ./configure.ac +8
M ./util/nlopt-util.h +5
Thu Jul 29 20:54:19 EDT 2010 stevenj@alum.mit.edu
* stick to C89 and avoid mixed declarations and code; thanks to Benoit Scherrer for the bug report (fails with MSVC)
M ./api/optimize.c -1 +1
M ./api/options.c -1 +2
Wed Jul 28 21:34:11 EDT 2010 stevenj@alum.mit.edu
* lcc doesn't support dllimport, thanks to Laurent Vanbeylen for the bug report
M ./api/nlopt.h -1 +1
Thu Jul 15 18:00:07 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.2
Thu Jul 15 17:51:05 EDT 2010 stevenj@alum.mit.edu
* added Fortran mconstraint API
M ./NEWS +2
M ./api/f77api.c +15
M ./api/f77funcs_.h +30
Thu Jul 15 17:32:58 EDT 2010 stevenj@alum.mit.edu
* thread-safety in nlopt_seconds(), assuming we have __thread or equivalent
M ./util/timer.c -5 +5
Thu Jul 15 17:31:24 EDT 2010 stevenj@alum.mit.edu
* tentative release date for 2.2
M ./NEWS -1 +1
Thu Jul 15 17:10:33 EDT 2010 stevenj@alum.mit.edu
* rm SLSQP from TODO
M ./TODO -2
Thu Jul 15 16:44:05 EDT 2010 stevenj@alum.mit.edu
* added --without-threadlocal to disable thread-local keyword for MinGW compilation
M ./BUILD-MINGW.sh -1 +1
M ./m4/ax_c_threadlocal.m4 -13 +21
Thu Jul 15 16:23:15 EDT 2010 stevenj@alum.mit.edu
* fix SLSQP to work with unbounded dimensions
M ./slsqp/README -1 +3
M ./slsqp/slsqp.c -8 +16
Thu Jul 15 15:37:14 EDT 2010 stevenj@alum.mit.edu
* update NEWS
M ./NEWS +5
Thu Jul 15 15:35:04 EDT 2010 stevenj@alum.mit.edu
* replace 1e20 with HUGE_VAL in ORIG_DIRECT code (silly hard-coded upper bound)
M ./direct/DIRsubrout.c -7 +3
Thu Jul 15 15:34:06 EDT 2010 stevenj@alum.mit.edu
* support forced stops in ORIG_DIRECT
M ./api/optimize.c +3
M ./direct/DIRect.c -3 +9
M ./direct/DIRserial.c -4 +9
M ./direct/DIRsubrout.c -2 +11
M ./direct/direct-internal.h -3 +3
M ./direct/direct.h -1 +3
M ./direct/direct_wrap.c -1 +2
M ./test/testopt.cpp -1 +3
Thu Jul 15 14:10:44 EDT 2010 stevenj@alum.mit.edu
* version bump
M ./NEWS +23
M ./configure.ac -2 +2
Thu Jul 15 12:20:51 EDT 2010 stevenj@alum.mit.edu
* allow BOBYQA and COBYLA to use unequal initial step sizes in different dimensions (internally rescaling the coordinates as needed); thanks to Tom Fiddaman for pointing out the problem when different coordinates have very different units
M ./api/optimize.c -11 +23
M ./bobyqa/bobyqa.c -16 +66
M ./bobyqa/bobyqa.h -4 +3
M ./cobyla/cobyla.c -38 +59
M ./cobyla/cobyla.h -4 +4
M ./util/Makefile.am -1 +1
M ./util/nlopt-util.h +6
A ./util/rescale.c
Thu Jul 15 12:15:40 EDT 2010 stevenj@alum.mit.edu
* fix failure in C++ (and some other front-ends) when de-allocating an nlopt object with a local optimizer; thanks to Jurgen Werner for the bug report
M ./api/options.c +1
Tue Jul 13 13:09:40 EDT 2010 stevenj@alum.mit.edu
* clarification of SLSQP name
M ./slsqp/README +5
Mon Jul 12 19:33:39 EDT 2010 stevenj@alum.mit.edu
* added python docstring for module; thanks to Sebastian Walter for the suggestion
M ./swig/nlopt.i -1 +9
Mon Jul 12 19:01:44 EDT 2010 stevenj@alum.mit.edu
* document SLSQP in man page
M ./api/nlopt.3 -6 +15
Mon Jul 12 18:31:17 EDT 2010 stevenj@alum.mit.edu
* fix memory leak for error condition
M ./test/testopt.cpp +1
Mon Jul 12 18:30:58 EDT 2010 stevenj@alum.mit.edu
* print out which bound was violated for bounds violation
M ./test/testopt.cpp -3 +12
Mon Jul 12 18:30:28 EDT 2010 stevenj@alum.mit.edu
* bug fixes to slsqp, now seems to work
M ./slsqp/README -4 +9
M ./slsqp/slsqp.c -17 +37
Sat Jul 10 17:59:47 EDT 2010 stevenj@alum.mit.edu
* added slsqp code (compiles, not yet tested)
M ./Makefile.am -2 +2
M ./api/Makefile.am -1 +1
M ./api/general.c +1
M ./api/nlopt.h +2
M ./api/optimize.c +7
M ./api/options.c +2
M ./configure.ac +1
A ./slsqp/
A ./slsqp/COPYRIGHT
A ./slsqp/Makefile.am
A ./slsqp/README
A ./slsqp/slsqp.c
A ./slsqp/slsqp.h
Sat Jul 10 17:59:37 EDT 2010 stevenj@alum.mit.edu
* prepare to handle forced-stop in ORIG_DIRECT (not done yet)
M ./api/optimize.c +2
Fri Jul 9 12:56:46 EDT 2010 stevenj@alum.mit.edu
* add missing %catches statements for recent C++ API additions, especially the add_*constraint functions; thanks to Dmitrey Kroshko for the bug report
M ./swig/nlopt-exceptions.i -1 +11
Fri Jul 9 12:34:03 EDT 2010 stevenj@alum.mit.edu
* if user specifies OCT_INSTALL_DIR, make M_INSTALL_DIR (if unspecified) default to the same directory
M ./configure.ac +2
Fri Jul 9 11:14:55 EDT 2010 stevenj@alum.mit.edu
* added GUILE_INSTALL_DIR var to change Guile installation directory
M ./configure.ac -5 +6
M ./swig/Makefile.am -1 +1
Thu Jul 8 17:50:18 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.1.2
Thu Jul 8 17:23:53 EDT 2010 stevenj@alum.mit.edu
* in functions with constraints, make sure forced_stop stops immediately, before evaluating any more user callbacks
M ./NEWS +4
M ./auglag/auglag.c -2 +17
M ./cobyla/cobyla.c -2 +6
M ./isres/isres.c +6
M ./mma/mma.c +6
Thu Jul 8 17:23:40 EDT 2010 stevenj@alum.mit.edu
* update NEWS
M ./NEWS +4
Thu Jul 8 16:26:02 EDT 2010 stevenj@alum.mit.edu
* use 2-dimensional array for grad arg of python mconstraint
M ./swig/nlopt-python.i -2 +3
Thu Jul 8 15:36:54 EDT 2010 stevenj@alum.mit.edu
* version bump (2.1.2)
M ./NEWS +10
M ./configure.ac -2 +2
Thu Jul 8 15:16:46 EDT 2010 stevenj@alum.mit.edu
* elim. memory leaks in C++/Python/Guile/Fortran interfaces if add_constraint gives an error or you set the objective multiple times
M ./api/options.c -15 +41
Thu Jul 8 15:04:36 EDT 2010 stevenj@alum.mit.edu
* fix memory leak in python wrapper on exception
M ./swig/nlopt-python.i +1
Wed Jul 7 19:10:56 EDT 2010 stevenj@alum.mit.edu
* return error if more than n equality constraints are specified
M ./api/options.c -2 +4
Wed Jul 7 19:10:33 EDT 2010 stevenj@alum.mit.edu
* yikes, fix argument check for tol argument in add_constraint functions
M ./api/options.c -1 +3
Wed Jul 7 19:07:02 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.1.1
Wed Jul 7 11:21:34 EDT 2010 stevenj@alum.mit.edu
* version bump 2.1.1
M ./NEWS +9
M ./configure.ac -2 +2
Wed Jul 7 11:17:05 EDT 2010 stevenj@alum.mit.edu
* better checking for Python and Numpy include directories; thanks to Nathaniel Smith for the tip about numpy.get_include()
M ./configure.ac -17 +18
M ./swig/Makefile.am -1 +1
Tue Jul 6 19:51:46 EDT 2010 stevenj@alum.mit.edu
* missing nlopt- prefix for version_* functions
M ./swig/nlopt.i +3
Tue Jul 6 17:20:09 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.1
Tue Jul 6 17:16:17 EDT 2010 stevenj@alum.mit.edu
* version bump for 2.1
M ./NEWS +10
M ./configure.ac -2 +2
Tue Jul 6 17:14:18 EDT 2010 stevenj@alum.mit.edu
* fix python mconstraint, change C++ mconstraint to infer m from tol.size()
M ./api/nlopt-in.hpp -16 +8
M ./swig/nlopt-python.i -2 +2
Tue Jul 6 16:58:19 EDT 2010 stevenj@alum.mit.edu
* python interface for mconstraint feature
M ./swig/nlopt-python.i +37
Tue Jul 6 16:37:01 EDT 2010 stevenj@alum.mit.edu
* added mconstraint functions to C++ API
M ./api/nlopt-in.hpp -13 +82
Tue Jul 6 15:51:54 EDT 2010 stevenj@alum.mit.edu
* fix mma mconstraints
M ./api/optimize.c -1 +2
M ./mma/mma.c -1 +6
Tue Jul 6 15:14:26 EDT 2010 stevenj@alum.mit.edu
* bug fixes to auglag in new mconstraint, don't use stopval in subopt unless no constraints
M ./auglag/auglag.c -6 +12
Thu Jul 1 18:24:52 EDT 2010 stevenj@alum.mit.edu
* add mconstraint to C API (not yet tested), thanks to Dmitrey of OpenOpt for the suggestion
M ./api/nlopt-internal.h +2
M ./api/nlopt.h +15
M ./api/optimize.c -13 +24
M ./api/options.c -31 +99
M ./auglag/auglag.c -52 +88
M ./cobyla/cobyla.c -9 +34
M ./isres/isres.c -8 +26
M ./mma/mma.c -17 +28
M ./util/nlopt-util.h -2 +10
M ./util/stop.c +27
Thu Jun 24 19:29:26 EDT 2010 stevenj@alum.mit.edu
* support equality constraints in COBYLA (internally, just a pair of inequality constraints: since COBYLA solves a sequence of LPs, and LPs have no problem with such pairs, it seems to converge just fine)
M ./api/nlopt.3 -6 +6
M ./api/optimize.c +1
M ./api/options.c -1 +2
M ./cobyla/cobyla.c +13
M ./cobyla/cobyla.h +1
Tue Jun 22 09:48:44 EDT 2010 stevenj@alum.mit.edu
* -mthreads forces mingwm10.dll dependency, remove; thanks to Jurgen Werner for the bug report
M ./BUILD-MINGW.sh -1 +1
Mon Jun 21 11:18:09 EDT 2010 stevenj@alum.mit.edu
* apparently the @ really is part of the identifier with stdcall functions...thanks to Juergen Werner for the bug report
M ./BUILD-MINGW.sh -1 +1
Thu Jun 17 19:47:43 EDT 2010 stevenj@alum.mit.edu
* guard against multiple inclusion in nlopt.hpp; thanks to Saul Thurrowgood for the suggestion
M ./api/nlopt-in.hpp +5
Thu Jun 17 13:02:37 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.0.2
Thu Jun 17 11:52:39 EDT 2010 stevenj@alum.mit.edu
* version bump (2.0.2)
M ./NEWS +6
M ./configure.ac -2 +2
Thu Jun 17 11:50:09 EDT 2010 stevenj@alum.mit.edu
* STDCALL needs to go after return type for MSVC++; thanks to Dave Katz for the bug report
M ./api/deprecated.c -14 +14
M ./api/general.c -3 +3
M ./api/nlopt.h -56 +56
M ./api/optimize.c -2 +2
M ./api/options.c -38 +58
Thu Jun 17 00:26:35 EDT 2010 stevenj@alum.mit.edu
* fixed mingw .def file
M ./BUILD-MINGW.sh -1 +1
Wed Jun 16 19:33:27 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.0.1
Wed Jun 16 19:24:29 EDT 2010 stevenj@alum.mit.edu
* version bump (2.0.1)
M ./NEWS +6
M ./configure.ac -2 +2
Wed Jun 16 19:10:06 EDT 2010 stevenj@alum.mit.edu
* added --with-mthreads option to use -mthreads flag when building MinGW, since that is reportedly needed for __thread to give threadlocal storage
M ./BUILD-MINGW.sh -1 +1
M ./configure.ac +8
Wed Jun 16 19:04:11 EDT 2010 stevenj@alum.mit.edu
* fixed MinGW build
M ./BUILD-MINGW.sh -3 +43
M ./api/deprecated.c +7
M ./api/f77api.c +4
M ./api/f77funcs.h -1 +1
M ./api/general.c -3 +3
M ./api/optimize.c +1
M ./api/options.c -37 +38
Wed Jun 16 18:17:07 EDT 2010 stevenj@alum.mit.edu
* added --without-python and --without-guile options
M ./configure.ac -4 +23
Wed Jun 16 17:47:52 EDT 2010 stevenj@alum.mit.edu
* fixed get_array functions in Fortran
M ./api/f77api.c -1 +1
Wed Jun 16 17:35:17 EDT 2010 stevenj@alum.mit.edu
* whoops, fixed to configure with --disable-shared
M ./configure.ac -3 +6
Wed Jun 16 14:57:31 EDT 2010 stevenj@alum.mit.edu
* doc update -- main MLSL no longer has default sub-algorithm
M ./api/nlopt.3 -3 +2
Tue Jun 15 22:10:57 EDT 2010 stevenj@alum.mit.edu
tagged nlopt-2.0
Tue Jun 15 20:45:10 EDT 2010 stevenj@alum.mit.edu
* change lb/ub field in Matlab interface to lower_bounds/upper_bounds, for consistency
M ./octave/nlopt_minimize_constrained.m -2 +2
M ./octave/nlopt_optimize-mex.c -2 +2
M ./octave/nlopt_optimize-oct.cc -4 +4
M ./octave/nlopt_optimize.m -5 +6
Tue Jun 15 19:06:44 EDT 2010 stevenj@alum.mit.edu
* check for numpy
M ./configure.ac +7
Tue Jun 15 18:29:11 EDT 2010 stevenj@alum.mit.edu
* tentative 2.0 release date
M ./NEWS -1 +1
Tue Jun 15 18:25:04 EDT 2010 stevenj@alum.mit.edu
* add NLOPT_G_MLSL variants that require local_opt to be specified
M ./api/Makefile.am -2 +2
M ./api/general.c +2
M ./api/nlopt.3 -15 +11
M ./api/nlopt.h -1 +4
M ./api/optimize.c -1 +7
M ./octave/Makefile.am -1 +1
A ./octave/NLOPT_G_MLSL.m
A ./octave/NLOPT_G_MLSL_LDS.m
M ./octave/mkconstants.sh -1 +1
M ./swig/Makefile.am -1 +1
Mon Jun 14 18:53:07 EDT 2010 stevenj@alum.mit.edu
* move new AUGLAG constants to end of list in order to preserve backwards compatibility
M ./api/general.c -2 +2
M ./api/nlopt.h -2 +4
M ./octave/Makefile.am -1 +1
M ./octave/NLOPT_AUGLAG.m -1 +1
M ./octave/NLOPT_AUGLAG_EQ.m -1 +1
M ./octave/NLOPT_GN_ISRES.m -1 +1
M ./octave/NLOPT_LD_AUGLAG.m -1 +1
M ./octave/NLOPT_LD_AUGLAG_EQ.m -1 +1
M ./octave/NLOPT_LN_AUGLAG.m -1 +1
M ./octave/NLOPT_LN_AUGLAG_EQ.m -1 +1
M ./octave/NLOPT_LN_BOBYQA.m -1 +1
Mon Jun 14 18:51:38 EDT 2010 stevenj@alum.mit.edu
* add AUGLAG constants to other langs
A ./octave/NLOPT_AUGLAG.m
A ./octave/NLOPT_AUGLAG_EQ.m
M ./api/Makefile.am -2 +2
M ./octave/Makefile.am -1 +1
M ./octave/NLOPT_AUGLAG.m +5
M ./octave/NLOPT_AUGLAG_EQ.m +5
M ./octave/NLOPT_GN_ISRES.m -1 +1
M ./octave/NLOPT_LD_AUGLAG.m -1 +1
M ./octave/NLOPT_LD_AUGLAG_EQ.m -1 +1
M ./octave/NLOPT_LN_AUGLAG.m -1 +1
M ./octave/NLOPT_LN_AUGLAG_EQ.m -1 +1
M ./octave/NLOPT_LN_BOBYQA.m -1 +1
M ./octave/mkconstants.sh -2 +2
M ./swig/Makefile.am -1 +1
Mon Jun 14 18:38:23 EDT 2010 stevenj@alum.mit.edu
* add numpy.i to dist, since it isn't shipped in a standard location I can rely on
M ./swig/Makefile.am -2 +2
A ./swig/numpy.i
Mon Jun 14 18:29:55 EDT 2010 stevenj@alum.mit.edu
* add TODO for more wrappers
M ./TODO +2
Mon Jun 14 18:27:41 EDT 2010 stevenj@alum.mit.edu
* scheme callbacks now take grad as vector argument, and must use side-effects to modify it
M ./swig/nlopt-guile.i -18 +12
Mon Jun 14 18:04:16 EDT 2010 stevenj@alum.mit.edu
* detect a roundoff error condition in COBYLA
M ./cobyla/cobyla.c -4 +8
Mon Jun 14 16:55:27 EDT 2010 stevenj@alum.mit.edu
* copy initial_step (if any) from opt to local_opt
M ./api/optimize.c -2 +2
M ./api/options.c -1
Mon Jun 14 16:42:37 EDT 2010 stevenj@alum.mit.edu
* set_initial_step(opt, NULL) resets to default
M ./api/options.c -1 +5
Mon Jun 14 16:38:57 EDT 2010 stevenj@alum.mit.edu
* document NLOPT_AUGLAG
M ./api/nlopt.3 -5 +19
Mon Jun 14 16:29:46 EDT 2010 stevenj@alum.mit.edu
* turn off auglag_verbose by default
M ./auglag/auglag.c -1 +1
Mon Jun 14 16:26:11 EDT 2010 stevenj@alum.mit.edu
* NLOPT_AUGLAG, no LN/LD, which requires local-opt algorithm to be specified; remove "convergence" tests for no progress towards feasibility in auglag, which seem to cause incorrect termination ....
M ./api/general.c +2
M ./api/nlopt.h +2
M ./api/optimize.c -1 +7
M ./api/options.c -1 +3
M ./auglag/auglag.c -11 +8
Mon Jun 14 14:40:16 EDT 2010 stevenj@alum.mit.edu
* updated NEWS with new 2.0 features
M ./NEWS -3 +57
Mon Jun 14 14:37:16 EDT 2010 stevenj@alum.mit.edu
* disable Python/Guile wrappers unless --enable-shared
M ./configure.ac +6
Mon Jun 14 14:21:29 EDT 2010 stevenj@alum.mit.edu
* C++, STOGO, and nocedal fixes
M ./api/f77api.c +1
M ./api/general.c -4 +3
M ./api/nlopt-internal.h -1 +1
M ./api/optimize.c -1 +1
M ./lbfgs/l-bfgs-b.cpp -3 +3
M ./lbfgs/l-bfgs-b.h -1 +1
M ./stogo/local.cc -1 +1
M ./stogo/stogo.cc -2 +2
M ./stogo/stogo.h -1 +1
Mon Jun 14 12:32:08 EDT 2010 stevenj@alum.mit.edu
* removed finished TODO
M ./TODO -2
Sat Jun 12 22:07:45 EDT 2010 stevenj@alum.mit.edu
* map NLopt's C++ exceptions to more Scheme-like equivalents
M ./swig/nlopt-guile.i +23