3504
|
1 2000-02-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2 |
3508
|
3 * base-de.h: Use tt instead of t as arg names. |
|
4 |
3507
|
5 * DASSL.cc (dassl_fcn_ptr, dassl_jac_ptr): New typedefs. |
|
6 * LSODE.cc: lsode_fcn_ptr, lsode_jac_ptr): Ditto. |
|
7 * Quad.cc (quad_fcn_ptr): Ditto. |
|
8 * NLEqn.cc (hybrd1_fcn_ptr, hybrj1_fcn_ptr): Ditto. |
|
9 |
3505
|
10 * oct-getopt.h, oct-getopt.c: New files for interface to getopt. |
|
11 |
|
12 * oct-kpse.h, oct-kpse.c: New files for interface to kpathsearch. |
|
13 |
3504
|
14 * dMatrix.cc (write_int, read_int): No longer declared static. |
|
15 |
|
16 * CDiagMatrix.h: Delete decls for friend operators that are |
|
17 handled by MDiagArray2 class. Move others outside class decl and |
|
18 strip friend status. |
|
19 * dDiagMatrix.h: Likewise. |
|
20 |
|
21 * MArray.h: Delete decls for friend operators inside class decl. |
|
22 * MArray2.h: Ditto. |
|
23 * MDiagArray2.h: Ditto. |
|
24 |
|
25 * MArray-defs.h (DO_VS_OP,, DO_SV_OP, DO_VV_OP, NEGV): Pass all |
|
26 necessary parameters. Don't allocate memory in the macro. Change |
|
27 all uses. |
|
28 |
|
29 * dMatrix.h (class Matrix): Delete `friend class' decls. |
|
30 * CMatrix.h (class ComplexMatrix): Ditto. |
|
31 |
|
32 * mx-op-defs (MS_BOOL_OP, MS_BOOL_OPS, SM_BOOL_OP, SM_BOOL_OPS, |
|
33 MM_BOOL_OP, MM_BOOL_OPS, MDM_MULTIPLY_OP, MDM_BIN_OPS, |
|
34 DMM_MULTIPLY_OP, DMM_BIN_OPS): Pass zero constant as final arg, to |
|
35 avoid type conflicts. Change all uses. |
|
36 |
|
37 * strptime.c (__mon_yday): Fix size of array decl. |
|
38 |
|
39 * mx-inlines.cc: Use `xnot' instead of `not' for function name. |
|
40 |
|
41 * chMatrix.cc (charMatrix::row_as_string): Delete extraneous |
|
42 default value for second arg. |
|
43 |
|
44 * Array2.cc (Array2<T>::resize): Add Array<T>:: qulaifier to |
|
45 references to ArrayRep. |
|
46 |
3503
|
47 2000-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
48 |
3504
|
49 * Array.h (Array::ArrayRep): Now protected, not private. |
3503
|
50 |
|
51 * All source files: Include iostream, fstream, strstream, |
|
52 etc. as needed instead of using forward declarations for these |
3504
|
53 classes. Add std:: qualifier as needed. |
3503
|
54 |
3498
|
55 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
56 |
|
57 * oct-time.cc: Declare strptime extern "C". |
|
58 |
3496
|
59 2000-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
60 |
|
61 * oct-time.cc [! HAVE_STRPTIME]: Provide declaration. |
|
62 |
3488
|
63 2000-01-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
64 |
3492
|
65 * Array2.h (Array2<T>::get_size): Now protected instead of private. |
|
66 * Array3.h, Array3.cc: Use it in constructors and resize methods |
|
67 to get total size to be allocated. |
|
68 |
3488
|
69 * DASSL.cc (DASSL::integrate): Declare do_restart and save_output |
|
70 as bool, not int. |
|
71 |
3482
|
72 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
73 |
|
74 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
75 Allow A(idx) = RHS if idx is a boolean index with the same shape |
|
76 as A, even when do_fortran_indexing is not enabled. |
|
77 (Array2<T>::index (idx_vector& idx) const): Likewise, for A(idx). |
|
78 |
3473
|
79 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
80 |
3480
|
81 * dMatrix.cc (Matrix::solve (...)): Add new variant with |
|
82 function pointer as final arg. Passed function (if any) will be |
|
83 called for singularity errors. |
|
84 * CMatrix.cc (ComplexMatrix::solve (...)): Likewise. |
|
85 |
|
86 * dMatrix.cc (Matrix::pseudo_inverse): Use economy SVD. |
|
87 * CMatrix.cc (ComplexMatrix::pseudo_inverse): Likewise. |
|
88 |
3475
|
89 * lo-ieee.cc (octave_ieee_init): Don't include sunmath.h. |
|
90 No longer bother with infinity or quiet_nan. |
|
91 |
3473
|
92 * Array2.cc (Array2<T>::get_size): New function. |
|
93 (Array2<T>::Array2, Array2<T>::resize): Use it. |
|
94 |
3472
|
95 2000-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
96 |
|
97 * Array2-idx.h (Array2<T>::maybe_delete_elements (idx_vector&)): |
|
98 New function. |
|
99 (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
100 Use it when indexing with one arg instead of faking a second one. |
|
101 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): |
|
102 Return empty matrices with the correct dimensions for A(:,:) = [] |
|
103 and also A(:,idx) = [], and A(idx,:) = [] when idx enumerates all |
|
104 rows or columns. |
|
105 |
|
106 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Recognize a bool |
|
107 vector that is all true values with a length equal to n as colon |
|
108 equivalent. |
|
109 |
3470
|
110 2000-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
111 |
|
112 * strptime.c: Only include langinfo.h if _LIBC is defined. |
|
113 |
|
114 2000-01-21 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3468
|
115 |
|
116 * CMatrix.cc (ComplexMatrix::expm): Apply permutation and scaling |
|
117 operations directly in step 2 and reverse step 2. |
|
118 * dMatrix.cc (Matrix::expm): Apply permutation and scaling |
|
119 operations directly in step 2 and reverse step 2. |
|
120 |
3465
|
121 2000-01-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
122 |
|
123 * oct-time.h, oct-time.cc (octave_strptime): New class. |
|
124 |
|
125 * strptime.c: New file, from glibc 2.1.2. |
|
126 * Makefile.in (SOURCES): Add strptime.c to the list. |
|
127 |
3419
|
128 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
129 |
|
130 * MArray.h (MArray <const Array<T>&)): New constructor. |
|
131 |
3415
|
132 2000-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
133 |
|
134 * pathsearch.cc (dir_path::all_directories): Avoid dereferencing |
|
135 NULL directory list returned from kpse_element_dirs |
|
136 |
3375
|
137 1999-12-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
138 |
|
139 * dbleLU.cc (LU::LU): Call DGETRF directly instead of calling DGESV. |
|
140 * CmplxLU.cc (ComplexLU::ComplexLU): Likewise, call ZGETRF |
|
141 directly, instead of calling ZGESV. |
|
142 |
3358
|
143 1999-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
144 |
|
145 * data-conv.cc (init_sized_type_lookup_table): New function. |
|
146 (string_to_data_type): Use it to improve lookup of data types. |
|
147 |
3354
|
148 1999-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
149 |
|
150 * dMatrix.cc (is_symmetric): Move here from Array2.cc. |
|
151 * Array2.h (is_symmetric): Delete declaration. |
|
152 |
3347
|
153 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
154 |
|
155 * oct-env.cc (do_get_user_name): Reverse sense of test. |
|
156 |
3344
|
157 1999-11-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
158 |
|
159 * oct-time.cc (Fstrftime): Undo previous change. |
|
160 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
161 |
3334
|
162 1999-11-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
163 |
3336
|
164 * dbleSVD.cc (SVD::init): Let DGESVD determine work space requirement. |
|
165 * CmplxSVD.cc (ComplexSVD::init): Likewise, for complex version. |
|
166 |
3334
|
167 * dbleSCHUR.cc (SCHUR::init): IWORK is always referenced by dgeesx. |
|
168 Don't forget to pass length of third string argument to dgeesx. |
|
169 |
|
170 * CmplxSCHUR.cc (ComplexSCHUR::init): Don't forget to pass length |
|
171 of third string argument to zgeesx. |
|
172 |
3333
|
173 1999-11-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
174 |
|
175 * DiagArray2.cc (DiagArray2<T>::operator () (int, int)): |
|
176 On errors, simply return `T ()'. |
|
177 (DiagArray2<T>::checkelem (int, int)): Likewise. |
|
178 |
3331
|
179 1999-11-02 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
|
180 |
|
181 * dMatrix.cc (Matrix::expm): Do balancing here instead of using |
|
182 AEPBALANCE class. |
|
183 * CMatrix.cc (ComplexMatrix::expm): Likewise. |
|
184 |
3325
|
185 1999-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
186 |
|
187 * oct-shlib.cc, oct-shlib.h: New files. |
|
188 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
189 |
3322
|
190 1999-10-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
191 |
|
192 * CRowVector.cc (linspace): Allow npoints == 1 if x1 == x2. |
|
193 * dRowVector.cc (linspace): Ditto. |
|
194 |
|
195 * oct-time.cc (Fstrftime): Don't save or delete tm_zone. |
|
196 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
197 |
3312
|
198 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
199 |
|
200 * DASSL.cc (DASSL::do_integrate (double)): If we have a function |
|
201 to evaluate the Jacobian, set info(4), not iwork(4). |
|
202 Set rwork(1) to the maximum step size, not rwork(2). |
|
203 |
3290
|
204 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
205 |
|
206 * oct-time.cc: Include <climits>. |
|
207 |
3281
|
208 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
209 |
|
210 * cmd-edit.h (command_editor::do_resize_terminal): New function. |
|
211 * cmd-edit.cc (command_editor::resize_terminal): New function. |
|
212 (gnu_readline::do_resize_terminal): New function. |
|
213 |
3268
|
214 Fri Sep 3 12:39:17 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
215 |
|
216 * lo-mappers.cc: Include ieeefp.h and sunmath.h if we have them. |
|
217 * lo-ieee.c: Likewise. |
|
218 Delete extern "C" declarations for infinity and quiet_nan. |
|
219 |
3262
|
220 Fri Aug 20 07:58:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
221 |
3263
|
222 * mx-inlines.cc (VS_OP, SV_OP, VV_OP): Delete `extern template' decls. |
|
223 (VS_OP_FCN, SV_OP_FCN, VV_OP_FCN): Declare template functions |
|
224 `inline', not `static inline'. |
|
225 |
3262
|
226 * idx-vector.cc (intcmp): Declare args as const void *, not int *, |
|
227 then cast to const int * to compare. |
|
228 |
3257
|
229 Fri Jul 16 11:23:51 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
230 |
|
231 * DAEFunc.h: Remove useless preprocessor conditional. |
|
232 |
3255
|
233 Thu Jul 15 14:10:33 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
234 |
3257
|
235 * cmd-edit.cc (command_editor::do_decode_prompt_string): |
|
236 Use octave_time object instead of time_t. |
|
237 |
|
238 * file-stat.h (file_stat::fs_atime, file_stat::fs_mtime, |
|
239 file_stat::fs_ctime): Now octave_time objects. |
|
240 (file_stat::atime, file_stat::mtime, file_stat::ctime): |
|
241 Return octave_time objects. |
|
242 (file_stat::is_newer): Args are now octave_time objects instead of |
|
243 time_t. |
|
244 |
3255
|
245 * oct-time.h (octave_time::as_double): Delete. |
|
246 (octave_time::operator double ()): New function. |
|
247 (octave_time::operator time_t ()): New function. |
|
248 (octave_time::ctime): New function. |
|
249 (octave_base_tm::strftime): Renamed from format_as_string. |
|
250 (octave_base_tm::asctime): New function. |
|
251 (operator == (const octave_time&, const octave_time&), |
|
252 operator != (const octave_time&, const octave_time&), |
|
253 operator < (const octave_time&, const octave_time&), |
|
254 operator <= (const octave_time&, const octave_time&), |
|
255 operator > (const octave_time&, const octave_time&), |
|
256 operator >= (const octave_time&, const octave_time&)): |
|
257 New comparison functions. |
|
258 |
|
259 * strftime.c: Move here from src directory. |
|
260 * Makefile.in (SOURCES): Add it to the list. |
|
261 |
|
262 * oct-time.h (octave_time::octave_time (time_t)): New constructor. |
|
263 |
3253
|
264 Wed Jul 14 17:38:07 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
265 |
|
266 * oct-time.h, oct-time.cc: New files. |
|
267 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
268 |
|
269 * systime.h: Move here from src directory. |
|
270 * Makefile.in (INCLUDES): Add it to the list. |
|
271 |
3248
|
272 Mon Jul 12 22:34:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
273 |
|
274 * mx-defs.h (b_d_Mapper, b_c_Mapper): New typedefs. |
|
275 * dMatrix.cc (Matrix::map (b_d_Mapper)): New function. |
|
276 * CMatrix.cc (ComplexMatrix::map (b_c_Mapper)): New function. |
|
277 * lo-mappers.cc (xisinf, xisnan, xfinite): Return bool, not double. |
|
278 |
|
279 * lo-mappers.cc (xmin, xmax): New functions to correctly handle NaNs. |
|
280 |
3243
|
281 Mon May 10 07:45:11 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
282 |
|
283 * MArray-defs.h (DO_VV_OP2): Fix macro definition to use arg. |
|
284 |
|
285 Wed May 5 20:06:10 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
286 |
|
287 * Array2-idx.h (Array2<T>index (idx_vector& idx)): Always return a |
|
288 column vector for A(:), for compatibility with Matlab. |
|
289 |
|
290 Fri Apr 23 11:52:23 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
291 |
|
292 * LSODE.cc (LSODE::do_integrate (double)): Don't forget to set |
|
293 iopt when there are optional inputs in rwork or iwork. |
|
294 |
3238
|
295 Fri Mar 26 11:26:32 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
296 |
|
297 * Makefile.in (libraries): Use the libfoo.a(objects) method of |
|
298 creating static libs. |
|
299 |
|
300 Thu Mar 4 02:17:04 1999 James Macnicol <jamesm@evans.ee.adfa.oz.au> |
|
301 |
|
302 * data-conv.cc (oct_data_conv::string_to_data_type): Handle uint16 |
|
303 and uint32 data types. |
|
304 |
|
305 Thu Mar 4 01:51:37 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
306 |
|
307 * lo-ieee.cc (octave_ieee_init): Don't use __alpha__-specific code |
|
308 for Linux. Remove old Linux-specific code. |
|
309 |
3233
|
310 Tue Jan 19 09:34:55 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
311 |
|
312 * dMatrix.cc (operator * (const ColumnVector& v, const RowVector& a)): |
|
313 Don't require lengths to be equal. |
|
314 * CMatrix.cc (operator * (const ComplexColumnVector& v, const |
|
315 ComplexRowVector& a)): Likewise |
|
316 |
3225
|
317 Tue Nov 24 23:38:19 1998 Eric Norum <eric@skatter.USask.Ca> |
|
318 |
|
319 * statdefs.h: Only define mode_t if not already defined. |
|
320 |
|
321 Tue Nov 24 17:24:52 1998 john <john@arrows.demon.co.uk> |
|
322 |
|
323 * lo-specfun.cc (airy, biry): Set imaginary part of result to zero |
|
324 when appropriate. |
|
325 |
|
326 Mon Nov 23 09:57:05 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
327 |
|
328 * cmd-edit.cc (gnu_readline::gnu_readline): Set terminal name |
|
329 before calling rl_initialize. |
|
330 |
3220
|
331 Tue Nov 17 23:47:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
332 |
|
333 * lo-specfun.cc (besselh, airy, biry): New functions. |
|
334 Update Bessel function support to use library by D. E. Amos. |
|
335 |
3219
|
336 Thu Nov 12 17:44:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
337 |
|
338 * cmd-edit.h (command_editor::readline): Add new variation that |
|
339 allows EOF information to be passed back to caller. |
|
340 |
|
341 * dMatrix.cc (Matrix::read): Do the right thing for EOF when |
|
342 amount of data to read is unspecified. |
|
343 |
3215
|
344 Tue Nov 10 07:53:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
345 |
3219
|
346 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): New macro. |
|
347 (DEFINE_OCTAVE_ALLOCATOR): Ditto. |
|
348 |
3215
|
349 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, swap_8_bytes): |
|
350 Add volatile qualifier to void* arg. |
|
351 Cast volatile void* arg to volatile char*. |
|
352 |
|
353 Mon Nov 9 08:28:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
354 |
|
355 * cmd-edit.h (command_editor::do_set_event_hook): New function. |
|
356 (command_editor::do_restore_event_hook): Ditto. |
|
357 * cmd-edit.cc (command_editor::set_event_hook): Ditto. |
|
358 (command_editor::restore_event_hook): Ditto. |
|
359 (gnu_readline::do_set_event_hook): Ditto. |
|
360 (gnu_readline::do_restore_event_hook): Ditto. |
|
361 (gnu_readline::previous_event_hook): New data member. |
|
362 (gnu_readline::gnu_readline): Initialize previous_event_hook. |
|
363 |
3206
|
364 Mon Nov 2 13:36:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
365 |
|
366 * Makefile.in (BINDISTLIBS): Don't include .$(SHLEXT_VER) in name. |
|
367 |
|
368 * Makefile.in (stmp-pic): New target. |
|
369 ($(PICOBJ)): Depend on stmp-pic, not pic. |
|
370 (clean): Remove stmp-pic |
|
371 |
|
372 * Makefile.in: Undo previous change to avoid optmization when |
|
373 compiling lo-ieee.cc. |
|
374 |
|
375 Sun Nov 1 10:10:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
376 |
|
377 * lo-mappers.cc (xfinite): Define in terms of xfinite for real and |
|
378 imaginary parts. |
|
379 (xisinf): Define in terms of xisinf for real and imaginary parts. |
|
380 |
3203
|
381 Thu Oct 29 18:57:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
382 |
|
383 * boolMatrix.cc (boolMatrix::operator !): New function. |
|
384 |
3196
|
385 Fri Oct 23 21:46:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
386 |
|
387 * pathsearch.h (dir_path::default_path): New data member. |
|
388 * pathsearch.cc (dir_path::init): Use it. |
|
389 |
|
390 * Makefile.in: Avoid optmization when compiling lo-ieee.cc. |
|
391 |
3189
|
392 Fri Oct 16 01:08:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
393 |
|
394 * chMatrix.cc (charMatrix::extract): New function. |
|
395 (charMatrix::charMatrix (char c)): New constructor. |
|
396 |
|
397 Tue Oct 13 22:11:08 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
398 |
|
399 * cmd-edit.h: (command_editor::do_read_init_file): New function. |
|
400 * cmd-edit.cc (command_editor::read_init_file): New function. |
|
401 (gnu_readline::do_read_init_file): Likewise. |
|
402 |
3185
|
403 Fri Sep 25 14:26:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
404 |
|
405 * oct-env.cc (octave_env::do_get_home_directory): |
|
406 If HOME can't be found, set it to "/". |
|
407 (octave_env::do_get_user_name) |
|
408 If user name can't be found, set it to "unknown". |
|
409 (octave_env::do_get_host_name) |
|
410 If host name can't be found, set it to "unknown". |
|
411 |
|
412 * pathsearch.h (dir_path::rehash): New function. |
|
413 * pathsearch.cc (dir_path::init): Clear kpathsea's internal |
|
414 diretcory cache before doing initialization. |
|
415 |
3180
|
416 Thu Sep 24 13:23:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
417 |
3185
|
418 * dMatrix.cc (Qzval): Delete. |
|
419 (qzhes, qzit, qzval): Delete F77_FCN declarations. |
|
420 * dMatrix.h (Qzval): Delete declaration. |
|
421 |
|
422 * dbleGEPBAL.h, dbleGEPBAL.cc: Delete. |
|
423 * Makefile.in (MATRIX_INC, MATRIX_SRC): Delete them from the lists. |
|
424 * mx-ext.h: Don't include dbleGEPBAL. |
|
425 |
3180
|
426 * lo-ieee.cc (octave_ieee_init): For now, use X_CAST instead of |
|
427 static_cast. |
|
428 |
|
429 Fri Sep 4 10:58:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
430 |
|
431 * dMatrix.cc (Matrix::read): Skip after reading, not before. |
|
432 From: Dr.-Ing. Torsten Finke <fi@igh-essen.com>. |
|
433 |
|
434 Wed Sep 2 09:50:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
435 |
|
436 * lo-ieee.cc (octave_ieee_init): For Linux on arm, don't rely on |
|
437 HUGE_VAL and NAN. |
|
438 |
|
439 Wed Aug 26 15:04:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
440 |
|
441 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
442 Handle x(i) = scalar for do_fortran_indexing == 1. |
|
443 |
|
444 Thu Jul 30 00:34:10 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
445 |
|
446 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const charMatrix&)): |
|
447 Alloctate space before attempting to use it. |
|
448 (ComplexMatrix::ComplexMatrix (const boolMatrix&)): Likewise. |
|
449 |
3178
|
450 Mon Jun 22 17:04:27 1998 Tomislav Goles <tom@ait-tech.com> |
|
451 |
|
452 * EIG.cc (EIG::init): Move invariant code outside loop. |
|
453 |
|
454 Thu Jun 18 11:08:23 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
455 |
|
456 * MArray2.cc (MARRAY_A2A2_OP): If operands are empty, make result |
|
457 have the same size as the operands. |
|
458 |
|
459 Thu May 28 10:41:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
460 |
|
461 * DASSL.cc (DASSL::do_integrate): If an exception occurs in the |
|
462 call to ddassl, set integration_error to 1 before calling the |
|
463 error handler and returning. |
|
464 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
465 |
3177
|
466 Wed May 27 13:46:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
467 |
|
468 * Array2-idx.h (assign): Allow A([],[]) = scalar and, if |
|
469 do_fortran_indexing is set, A([]) = scalar. |
|
470 * Array-idx.h (assign): Allow A([]) = scalar. |
|
471 |
3176
|
472 Thu May 14 11:50:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
473 |
|
474 * mx-op-defs.h (MDM_MULTIPLY_OP): Compute result if dm_nc > 0, not |
|
475 if dm_nc == 0. |
|
476 |
3174
|
477 Thu Apr 23 16:15:37 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
478 |
|
479 * pathsearch.h (dir_path::p_orig): New field. |
|
480 * pathsearch.cc (dir_path::init): Perform variable and tilde |
|
481 expansion on the original path here. |
|
482 (dir_path::find_all): Don't do anything if not initialized. |
|
483 |
3164
|
484 Tue Apr 14 14:41:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
485 |
|
486 * Array2-idx.h (index): Allow x(:) even when do_fortran_indexing |
|
487 is not set. |
|
488 (index): Allow x = zeros (2, 0); x(1,:) to work. |
|
489 |
|
490 * lo-specfun.cc (gammainc): Use dgamit to compute |
|
491 (\int_0^x exp(-t) t^(a-1) dt)/gamma(a), not just |
|
492 \int_0^x exp(-t) t^(a-1) dt. |
|
493 |
|
494 Wed Apr 8 22:50:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
495 |
|
496 * Array-C.cc, Array-b.cc, Array-ch.cc, Array-i.cc, Array-d.cc, |
|
497 Array-s.cc: Change return types of all `assign' explicit |
|
498 instantiations to be int, not void, to match the template decl in |
|
499 Array.h. |
|
500 |
3162
|
501 Mon Apr 6 00:27:06 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
502 |
|
503 * lo-specfun.cc (gammainc): Reorder args in call to xdgami. |
|
504 |
3156
|
505 Thu Feb 19 01:16:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
506 |
|
507 * lo-specfun.cc (xgamma, xlgamma): Define here. |
|
508 * lo-mappers.cc: Not here. |
|
509 |
|
510 * lo-specfun.h: Declare xgamma and xlgamma here. |
|
511 * lo-mappers.h: Not here. |
|
512 |
|
513 * lo-specfun.h: Never declare gamma or lgamma. |
|
514 |
3154
|
515 Tue Feb 10 16:14:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
516 |
|
517 * Array-idx.h (assign): Allow A([]) = X to succeed if X is an |
|
518 empty matrix of any dimension. |
|
519 |
3145
|
520 Thu Feb 5 02:12:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
521 |
3147
|
522 * oct-syscalls.cc (octave_syscalls::vfork): New function. |
|
523 |
3146
|
524 * lo-specfun.cc: Don't include dbleBessel.h. |
|
525 |
|
526 * Makefile.in (INCLUDES): Delete oct-math.h from the list. |
|
527 |
3145
|
528 * dir-ops.h (dir_entry::operator bool ()): Return bool, not void*. |
|
529 * file-stat.h (file_stat::operator bool ()): Likewise. |
|
530 * idx-vector.h (idx_vector::operator bool ()): Likewise. |
|
531 * oct-group.h (octave_group::operator bool ()): Likewise. |
|
532 * oct-passwd.h (octave_passwd::operator bool ()): Likewise. |
|
533 |
|
534 * data-conv.cc (IEEE_little_double_to_IEEE_big_double): |
|
535 Don't cast arg in call to swap_8_bytes. |
|
536 (IEEE_big_double_to_IEEE_little_double): Ditto |
|
537 (IEEE_big_float_to_IEEE_little_float): Don't cast arg in call to |
|
538 swap_4_bytes. |
|
539 (IEEE_little_float_to_IEEE_big_float): Ditto |
|
540 |
|
541 * oct-alloc.cc (grow): Use X_CAST, not static_cast. |
|
542 * prog-args.cc (prog_args::getopt): Likewise. |
|
543 * dMatrix.cc (read_int, do_read, write_int, do_write): Likewise. |
|
544 * cmd-edit.cc (gnu_readline::do_set_completion_function): Likewise. |
|
545 * data-conv.cc (LS_DO_READ, LS_DO_WRITE, read_doubles, write_doubles): |
|
546 Likewise. |
|
547 |
|
548 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, |
|
549 swap_8_bytes): Declare ptr arg as void*, then use cast. |
|
550 |
3141
|
551 Mon Feb 2 01:42:56 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
552 |
|
553 * Makefile.in (install, uninstall): Use $(octlibdir), not $(libdir). |
|
554 Use $(mk-libdir-link). |
|
555 |
|
556 * file-stat.cc (file_stat::update_internal): Use stat and lstat, |
|
557 not SAFE_STAT and SAFE_LSTAT. |
|
558 (lstat): New function, defined if HAVE_LSTAT is not defined. |
|
559 * safe-xstat.hin, safe-xstat.cin: Delete. |
|
560 * Makefile.in: Delete rules for safe-stat.h, safe-stat.c, |
|
561 safe-lstat.h, and safe-lstat.cc. |
|
562 |
3136
|
563 Fri Jan 30 23:48:43 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
564 |
|
565 * chMatrix.cc (charMatrix::all, charMatrix::any): New functions. |
|
566 |
3130
|
567 Tue Jan 20 16:30:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
568 |
|
569 * dMatrix.cc (Matrix::expm): Skip trace normalization step if the |
|
570 trace is negative. |
|
571 * CMatrix.cc (ComplexMatrix::expm): Skip trace normalization if |
|
572 the real part of the trace is negative. |
|
573 |
|
574 Mon Jan 19 16:01:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
575 |
|
576 * dMatrix.cc (Matrix::expm): Call xdlange instead of dlange. |
|
577 * CMatrix.cc (ComplexMatrix::expm): Call xzlange instead of zlange. |
|
578 |
|
579 * Array2-idx.h (assign): Allow operations like a = 1; a(2:3) = [1;2] |
|
580 to succeed. |
|
581 |
3125
|
582 Thu Dec 18 14:53:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
583 |
|
584 * idx-vector.cc (IDX_VEC_REP::sort): Don't do anything unless len > 1. |
|
585 (make_uniq): Likewise. |
|
586 |
|
587 Fri Dec 12 10:58:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
588 |
|
589 * lo-ieee.cc (octave_ieee_init): Check for linux before __alpha__. |
|
590 |
3119
|
591 Sun Nov 30 14:59:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
592 |
3121
|
593 * lo-mappers.cc: Include cmath and lo-specfun.h, not oct-math.h. |
|
594 |
|
595 * lo-specfun.h, lo-specfun.cc: New files. |
3119
|
596 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
597 |
3121
|
598 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c, |
|
599 oct-math.h: Delete. |
|
600 * Makefile.in (SOURCES): Delete them from the list. |
|
601 |
3112
|
602 Wed Nov 26 20:02:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
603 |
|
604 * lo-sysdep.cc (octave_getcwd): Prefer getcwd over getwd. |
|
605 |
3107
|
606 Wed Nov 19 02:30:04 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
607 |
|
608 Changes to make support egcs snapshots that implement explicit |
|
609 specification of template functions according to CD2. |
|
610 |
|
611 * MArray.h: If NEED_TEMPLATE_FCN_SPECS is defined, add explicit |
|
612 template function specs for template friends. |
|
613 * MArray2.h: Likewise. |
|
614 * MDiagArray2.h: Likewise. |
|
615 |
3095
|
616 Thu Nov 13 21:57:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
617 |
|
618 * CMatrix.cc (sumsq): Compute equivalent of sum (x .* conj (x)) |
|
619 |
3092
|
620 Thu Oct 2 17:13:02 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
621 |
|
622 * CRowVector.cc (linspace): Removed attempt for implicit conversion |
|
623 to complex<double>(int) instead of complex<double>(double). |
|
624 |
|
625 * lo-mappers.cc (atanh): Ditto. |
|
626 |
3079
|
627 Thu Jul 31 22:13:54 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
628 |
|
629 * idx-vector.cc (IDX_VEC_REP::sort): New function. |
|
630 * idx-vector.h (idx_vector::sort): Ditto. |
|
631 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use it before |
|
632 trying to delete elements specified by the index vectors. |
|
633 |
3075
|
634 Fri Jul 25 17:31:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
635 |
|
636 * dMatrix.cc (Matrix::lssolve): Increase lwork by factor of 16. |
|
637 * CMatrix.cc (ComplexMatrix::lssolve): Ditto. |
|
638 |
3074
|
639 Thu Jul 24 14:32:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
640 |
|
641 * file-ops.cc (tilde_expand_word): Fix off-by-one error. |
|
642 |
3069
|
643 Wed Jul 9 19:40:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
644 |
|
645 * lo-sysdep.cc (octave_getcwd): If getwd is available, use it. |
|
646 Call error handler if we can't find the current directory. |
|
647 |
3068
|
648 Mon Jul 7 21:14:41 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
649 |
3069
|
650 * lo-mappers.cc (xisnan (double)): Return only 1 or 0. |
|
651 (xfinite (double)): Ditto. |
|
652 |
3068
|
653 * dbleQR.cc (QR::init): Don't forget to initialize Q when type is raw. |
|
654 * CmplxQR.cc (ComplexQR::init): Ditto. |
|
655 |
3056
|
656 Sun Jun 15 21:06:37 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
657 |
|
658 * lo-mappers.cc (acos (const Complex&)): Select branch that is |
|
659 compatible with Matlab. |
|
660 |
3050
|
661 Tue Jun 10 10:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
662 |
|
663 * Array2-idx.h: Correctly handle empty matrices indexed by a |
|
664 single colon. |
|
665 |
3040
|
666 Fri Jun 6 04:27:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
667 |
3049
|
668 * lo-mappers.cc (xlgamma): Use F77_XFCN function to call dlgams. |
|
669 (xgamma): Likewise, for calling xdgamma. |
|
670 |
3042
|
671 * FSQP.h, NPSOL.h, QPSOL.h, FSQP.cc, NPSOL.cc, QPSOL.cc: Delete |
|
672 * Makefile.in (INCLUDES, SOURCES): Remove them from the lists. |
|
673 |
3040
|
674 * file-ops.cc (file_ops::tilde_expand): Steal more code from bash |
|
675 to do better job expanding tildes. |
|
676 |
|
677 * str-vec.cc (string_vector::string_vector (const char * const *): |
|
678 Use temporary variable to compute length. |
|
679 |
3029
|
680 Thu Jun 5 01:44:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
681 |
3034
|
682 * Makefile.in: Make building of static library optional. |
3036
|
683 (liboctave.$(SHLEXT_VER)): Add $(SONAME_FLAGS) to command. |
3034
|
684 |
3029
|
685 * Makefile.in (stamp-picdir): Delete. |
|
686 (pic): New target. Don't worry so much about creating pic |
|
687 directory only when it is really needed. |
|
688 (stamp-interp): Delete. |
|
689 (libraries): New target. Depend on shared library directly. |
|
690 |
3024
|
691 Wed Jun 4 00:08:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
692 |
|
693 * pathsearch.h, pathsearch.cc (dir_pat::set_program_name): |
|
694 New static function. |
|
695 |
3012
|
696 Mon Jun 2 12:44:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
697 |
|
698 * lo-mappers.cc (fix): Use floor and ceil instead of casting to int. |
|
699 |
3004
|
700 Thu May 22 16:20:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
701 |
|
702 * cmd-edit.h, cmd-edit.cc: Rename set_paren_string_delimiters to |
|
703 set_basic_quote_characters, to match new version of readline. |
|
704 |
|
705 * cmd-edit.cc (do_restore_terminal_state): Call readline function |
|
706 for restoring terminal state through rl_deprep_term_function, now |
|
707 declared in readline.h |
|
708 (rl_deprep_terminal): Delete declaration. |
|
709 |
2993
|
710 Wed May 21 16:30:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
711 |
|
712 * Makefile.in (install-in): Use new mk-includedir-link macro. |
|
713 (install-lib): Install in $octlibdir. Use new mk-libdir-link macro. |
|
714 |
2968
|
715 Thu May 15 11:46:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
716 |
|
717 * cmd-edit.cc (command_editor::increment_current_command_number): |
|
718 New static function. |
|
719 |
2964
|
720 Mon May 12 02:14:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
721 |
2966
|
722 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Make it work when |
|
723 the vector is not sorted. |
|
724 |
2964
|
725 * CMatrix.cc (ComplexMatrix::operator !): Return boolMatrix. |
|
726 * dMatrix.cc (Matrix::operator !): Likewise |
|
727 |
2941
|
728 Wed May 7 21:14:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
729 |
|
730 * oct-syscalls.h, oct-syscalls.cc: New files. |
|
731 |
|
732 * cmd-edit.h, cmd-edit.cc: Handle completion function. |
|
733 |
|
734 * str-vec.h, str-vec.cc (string_vector::uniq): New function. |
|
735 |
2938
|
736 Tue May 6 00:52:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
737 |
2941
|
738 * Makefile.in (INCLUDES_FOR_INSTALL): New variable. |
|
739 (install-inc): Use it. |
|
740 |
2938
|
741 * file-ops.h, file-ops.cc (tempnam): Add DIR and PREFIX args. |
|
742 Handle errors and missing functions consistently. |
|
743 |
|
744 * oct-group.h, oct-group.cc: New files. |
|
745 |
|
746 * oct-passwd.cc: Handle errors and missing functions consistently. |
|
747 |
|
748 * str-vec.h, str-vec.cc (c_str_vec, delete_c_str_vec): New functions. |
|
749 |
2934
|
750 Mon May 5 17:53:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
751 |
|
752 * file-ops.cc: (file_ops::tilde_expand): Use new octave_passwd class. |
|
753 * oct-env.cc (octave_env::do_get_user_name): Likewise. |
|
754 |
|
755 * oct-passwd.h, oct-passwd.cc: New files. |
|
756 |
2926
|
757 Sun May 4 22:17:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
758 |
|
759 * statdefs.h: Only include sys/types.h if HAVE_SYS_STAT_H is defined. |
|
760 |
|
761 * mach-info.h, mach-info.cc: Add missing const qualifiers. |
|
762 (instance_ok ()): New function. |
|
763 |
|
764 * glob-match.h, glob-match.cc: Rename from oct-glob.h, oct-glob.cc. |
|
765 |
|
766 * cmd-hist.h, cmd-hist.cc: Make it work without GNU readline. |
|
767 |
|
768 * lo-utils.h, lo-utils.cc (strsave, octave_putenv): Move here from |
|
769 src/utils.h and src/utils.cc. |
|
770 (octave_fgets): New function, extracted from src/input.cc. |
|
771 |
|
772 * cmd-edit.h, cmd-edit.cc: New files. Provide wrapper class for |
|
773 GNU readline, and allow Octave to work without GNU readline. |
|
774 |
|
775 * lo-sysdep.h, lo-sysdep.cc: New files for miscellaneous |
|
776 system-dependent functions. |
|
777 |
|
778 * oct-env.h, oct-env.cc: New files for process environment stuff. |
|
779 |
|
780 * file-stat.h, file-stat.cc: New files. Extract file_stat class |
|
781 from file-ops.h and file-ops.cc and move here. |
|
782 |
|
783 * file-ops.h, file-ops.cc: Wrap functions in struct. Move |
|
784 tilde_expand functions here from src/dirfns.cc. |
|
785 |
|
786 Fri May 2 19:50:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
787 |
|
788 * pathlen.h: New file, from ../src. |
|
789 |
2917
|
790 Tue Apr 29 04:39:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
791 |
|
792 * Array2-idx.h (Array2<T>::maybe_delete_elements): Prevent |
|
793 out-of-bounds indexing of the index array. |
|
794 * Array-idx.h (Array<T>::maybe_delete_elements): Likewise. |
|
795 |
2850
|
796 Fri Mar 28 15:37:09 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
797 |
|
798 * LSODE.h (x_step_limit): New field. |
|
799 (LSODE_options::init): Initialize it. |
|
800 (LSODE_options::copy): Copy it. |
|
801 (LSODE_options::set_step_limit, LSODE_options::step_limit): |
|
802 New functions. |
|
803 (LSODE::working_too_hard): Delete. |
|
804 * LSODE.cc (LSODE::do_integrate): Handle step limit. |
|
805 |
2844
|
806 Wed Mar 26 15:31:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
807 |
|
808 * MArray-b.cc: Delete. |
|
809 * Makefile.in: Delete it from the lists. |
|
810 |
|
811 * boolMatrix.h (class bboolMatrix): Derive from Array2, not |
|
812 MArray2, since most of the numeric ops don't really make sense. |
|
813 |
2829
|
814 Tue Mar 25 17:37:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
815 |
2832
|
816 * boolMatrix.cc (boolMatrix::all, boolMatrix::any): New functions. |
|
817 |
|
818 * dMatrix.cc (Matrix::all, Matrix::any): Return boolMatrix. |
|
819 * CMatrix.cc (ComplexMatrix::all, ComplexMatrix::any): Likewise. |
|
820 |
2830
|
821 * idx-vector.h (idx_vector::idx_vector_rep::freeze, |
|
822 idx_vector::freeze): Delete prefer_zero_one arg. |
|
823 * Array-idx.h, Array2-idx.h: Change all callers. |
|
824 |
|
825 * Array-flags.h, Array-flags.cc (liboctave_pzo_flag): Delete. |
|
826 |
2829
|
827 * mx-op-defs.h: New file for operator definitions. |
|
828 * mx-cdm-cm.h, mx-cdm-cs.h, mx-cdm-dm.h, mx-cdm-m.h, mx-cdm-s.h, |
|
829 mx-cm-cdm.h, mx-cm-dm.h, mx-cm-m.h, mx-cm-s.h, mx-cs-cdm.h, |
|
830 mx-cs-dm.h, mx-cs-m.h, mx-dm-cdm.h, mx-dm-cm.h, mx-dm-cs.h, |
|
831 mx-dm-m.h, mx-dm-s.h, mx-m-cdm.h, mx-m-cm.h, mx-m-cs.h, mx-m-dm.h, |
|
832 mx-s-cdm.h, mx-s-cm.h, mx-s-dm.h, mx-cdm-cm.cc, mx-cdm-cs.cc, |
|
833 mx-cdm-dm.cc, mx-cdm-m.cc, mx-cdm-s.cc, mx-cm-cdm.cc, mx-cm-dm.cc, |
|
834 mx-cm-m.cc, mx-cm-s.cc, mx-cs-cdm.cc, mx-cs-dm.cc, mx-cs-m.cc, |
|
835 mx-dm-cdm.cc, mx-dm-cm.cc, mx-dm-cs.cc, mx-dm-m.cc, mx-dm-s.cc, |
|
836 mx-m-cdm.cc, mx-m-cm.cc, mx-m-cs.cc, mx-m-dm.cc, mx-s-cdm.cc, |
|
837 mx-s-cm.cc, mx-s-dm.cc: |
|
838 New files for mixed-type operations. |
|
839 * Makefiles.in: Add them to the appropriate lists. |
|
840 |
|
841 * mx-inlines.cc: Add bool by bool EQ ops. |
|
842 |
|
843 * idx-vector.h, idx-vector.cc: Add constructors for bool and |
|
844 boolMatrix types. |
|
845 (idx_vector::maybe_convert_one_zero_to_idx, |
|
846 idx_vector::idx_vector_rep::maybe_convert_one_zero_to_idx): |
|
847 Delete second arg, prefer_zero_one. Change all callers. |
|
848 |
|
849 * boolMatrix.h, boolMatrix.cc: New files. |
|
850 * mx-base.h: Include boolMatrix.h here. |
|
851 * mx-defs.h: Provide forward declaration for boolMatrix here. |
|
852 |
|
853 * chMatrix.h, chMatrix.cc: Delete unused junk. |
|
854 |
|
855 * dMatrix.h, CMatrix.h: Delete friend declarations for operator+, |
|
856 operator-, operator*, product, and quotient functions. |
|
857 Add constructor for boolMatrix type. |
|
858 * dMatrix.cc, CMatrix.cc: Delete operator+, operator-, operator*, |
|
859 product, and quotient functions. |
|
860 |
|
861 * CDiagMatrix.h: Delete friend declarations for operator+, |
|
862 operator-, and product functions. |
|
863 * CDiagMatrix.h: Delete operator+, operator-, and product functions. |
|
864 |
|
865 * Array-b.cc: Also instantiate 2d and 2d diagonal arrays. |
|
866 |
2815
|
867 Fri Mar 14 00:29:46 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
868 |
|
869 * EIG.cc (EIG::hermitian_init (const ComplexMatrix&)): New function. |
|
870 (EIG::init (const ComplexMatrix&)): Call it if arg is hermitian. |
|
871 (EIG::symmetric_init (const Matrix&)): New function. |
|
872 (EIG::init (const Matrix&)): Call it if arg is symmetric. |
|
873 |
|
874 * CMatrix.cc (ComplexMatrix::is_hermitian): New function. |
|
875 |
|
876 Thu Mar 13 17:04:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
877 |
|
878 * Array2.cc (is_symmetric): New function. |
|
879 * Array2.h (is_square): New function. |
|
880 |
2811
|
881 Wed Mar 12 16:59:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
882 |
|
883 * Makefile.in (install-strip): New target. |
|
884 |
2804
|
885 Mon Mar 10 22:34:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
886 |
|
887 * CmplxCHOL.cc, CmplxHESS.cc, CmplxLU.cc, CmplxQR.cc, |
|
888 CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, EIG.cc, dbleCHOL.cc, |
|
889 dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, dbleSCHUR.cc, |
|
890 dbleSVD.cc: Don't include mx-inlines.cc. |
|
891 |
|
892 * mx-inlines.cc: Abuse the preprocessor to eliminate lots of |
|
893 duplicate code. |
|
894 |
2800
|
895 Sun Mar 9 03:44:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
896 |
2804
|
897 * dbleQR.h (QR): Delete extra comma at end of list. |
|
898 |
|
899 * prog-args.cc (prog_args::getopt): Add missing const in cast. |
|
900 |
|
901 * dbleSVD.h (SVD::type): Delete extra comma at end of list. |
|
902 |
|
903 * idx-vector.h (idx_vector): Delete unnecessary idx_vector:: and |
|
904 idx_vecotr_rep:: qualifiers. |
|
905 |
|
906 * Array.h (class Array): Delete unnecessary Array<T>:: qualifiers. |
|
907 |
|
908 * data-conv.h (save_type): Delete extra comma at end of list. |
|
909 |
2800
|
910 * CMatrix.cc, FEGrid.cc, Range.cc, dMatrix.cc, data-conv.cc, |
|
911 dir-ops.cc, file-ops.h, idx-vector.cc, idx-vector.h, lo-ieee.cc, |
|
912 lo-mappers.cc, oct-alloc.cc: Use `static_cast<T> (val)' instead of |
|
913 old C-style `(T) val' casts. |
|
914 |
2795
|
915 Thu Mar 6 20:20:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
916 |
|
917 * dMatrix.cc (operator >>): Return if an error occurs instead of |
|
918 just breaking out of the innermost loop. |
|
919 * CMatrix.cc (operator >>): Likewise. |
|
920 |
2779
|
921 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
922 |
|
923 * Version 2.0.5 released. |
|
924 |
2767
|
925 Fri Feb 28 20:11:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
926 |
|
927 * CmplxQR.cc (ComplexQR::init): New function. |
|
928 (ComplexQR::ComplexQR): Use it. Use initializer list too. |
|
929 * CmplxQRP.cc (ComplexQRP::init): New function. |
|
930 Get sizes right in all cases. |
|
931 (ComplexQR::ComplexQRP): Use it. Use initializer list too. |
|
932 |
|
933 * dbleQR.cc (QR::init): New function. |
|
934 (QR::QR): Use it. Use initializer list too. |
|
935 * dbleQRP.cc (QRP::init): New function. |
|
936 Get sizes right in all cases. |
|
937 (QR::QRP): Use it. Use initializer list too. |
|
938 |
2759
|
939 Wed Feb 26 15:46:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
940 |
|
941 * mach-info.cc (oct_mach_info::string_to_float_format): |
|
942 Recognize "vaxg", not "vax_g". |
|
943 |
2713
|
944 Fri Feb 21 16:07:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
945 |
2714
|
946 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use correct |
|
947 dimension in check for colon equivalent index. |
|
948 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): A single-element |
|
949 index whose value is 0 is also colon eqivalent for n == 1. |
|
950 |
2713
|
951 * lo-ieee.cc (octave_ieee_init): Reorder #ifdef stuff to put |
|
952 system-specific tests first. |
|
953 |
2709
|
954 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
955 |
|
956 * Version 2.0.4 released. |
|
957 |
|
958 Wed Feb 19 09:42:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
959 |
|
960 * lo-ieee.cc: D'oh, it's `extern "C"', not `#extern "C"'. |
|
961 |
2693
|
962 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
963 |
|
964 * Version 2.0.3 released. |
|
965 |
2686
|
966 Fri Feb 14 16:23:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
967 |
|
968 * Makefile.in (bin-dist): Don't write empty strings to LIBRARIES. |
|
969 |
2673
|
970 Thu Feb 13 14:35:19 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
971 |
2676
|
972 * Makefile.in (stamp-prereq): Depend on stamp-picdir. |
|
973 (all): Don't depend on stamp-prereq or stamp-picdir. |
|
974 (liboctave.a, stamp-shared): Do depend on stamp-prereq. |
|
975 (stamp-picdir): Silence noise about making pic. |
|
976 (stamp-shared): Use $(SH_LD) $(SH_LDFLAGS) instead of $(CXX) -shared. |
|
977 |
2673
|
978 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
979 Fix typo in last change. |
|
980 |
|
981 * CColVector.cc (ComplexColumnVector::map (d_c_mapper)): |
|
982 Convert from friend (moved from dColVector.cc). |
|
983 * CMatrix.cc (ComplexMatrix::map (d_c_mapper)): |
|
984 Likewise (moved from dMatrix.cc). |
|
985 * CRowVector.cc (ComplexRowVector::map (d_c_mapper)): |
|
986 Likewise (moved from dRowVector.cc). |
|
987 |
|
988 * dColVector.cc (ColumnVector::map (d_d_mapper)): Convert from friend. |
|
989 * dMatrix.cc (Matrix::map (d_d_mapper)): Likewise. |
|
990 * dRowVector.cc (RowVector::map (d_d_mapper)): Likewise. |
|
991 * CColVector.cc (ComplexColumnVector::map (c_c_mapper)): Likewise. |
|
992 * CMatrix.cc (ComplexMatrix::map (c_c_mapper)): Likewise. |
|
993 * CRowVector.cc (ComplexRowVector::map (c_c_mapper)): Likewise. |
|
994 |
|
995 * dColVector.cc (ColumnVector::apply): Rename from map, return *this. |
|
996 * dMatrix.cc (Matrix::apply): Likewise. |
|
997 * dRowVector.cc (RowVector::apply): Likewise. |
|
998 * CColVector.cc (ComplexColumnVector::apply): Likewise. |
|
999 * CMatrix.cc (ComplexMatrix::apply): Likewise. |
|
1000 * CRowVector.cc (ComplexRowVector::apply): Likewise. |
|
1001 |
2668
|
1002 Tue Feb 11 19:44:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1003 |
|
1004 * lo-ieee.cc: Declare quiet_nan() and infinity(). |
|
1005 |
|
1006 Mon Feb 10 01:17:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1007 |
|
1008 * file-ops.cc (oct_unlink (const string&, string&)): |
|
1009 New two-arg version. |
|
1010 (oct_rmdir (const string&, string&)): New two-arg version. |
|
1011 (oct_mkdir (const string&, mode_t, string&)): New three-arg version. |
|
1012 (oct_mkfifo (const string&, mode_t, string&)): New three-arg version. |
|
1013 (oct_rename (const string&, const string&, string&)): |
|
1014 New three-arg version. |
|
1015 |
2663
|
1016 Fri Feb 7 13:15:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1017 |
|
1018 * idx-vector.h (idx_vector::orig_empty): New function. |
|
1019 |
|
1020 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
1021 Don't always resize to [](0x0) if one of the indices is empty or |
|
1022 zero. |
|
1023 |
2658
|
1024 Sun Feb 2 22:33:44 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1025 |
|
1026 * cmd-hist.cc (command_history::read): New arg, must_exist. |
|
1027 Set line_in_file here too. |
|
1028 (command_history::read_range): New arg, must_exist. |
|
1029 |
2651
|
1030 Fri Jan 31 09:21:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1031 |
|
1032 * f2c-main.c: Change C++-style comments to C-style comments. |
|
1033 |
2638
|
1034 Tue Jan 28 10:46:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1035 |
|
1036 * Makefile.in (install-inc): Create a relative symbolic link. |
|
1037 |
2634
|
1038 Mon Jan 27 15:52:27 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1039 |
|
1040 * Version 2.0.2 released. |
|
1041 |
2624
|
1042 Sat Jan 25 22:36:21 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1043 |
|
1044 * Makefile.in (bin-dist): New target. |
|
1045 |
2621
|
1046 Wed Jan 22 16:18:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1047 |
|
1048 * dbleSVD.cc (SVD::init): Work around apparent dgesvd() bug. |
|
1049 * CmplxSVD.cc (ComplexSVD::init): Work around apparent zgesvd() bug. |
|
1050 |
2613
|
1051 Mon Jan 20 18:44:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1052 |
|
1053 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
1054 If the number of columns is zero, also set the number of rows to zero. |
|
1055 (charMatrix::charMatrix (const char *)): Likewise. |
|
1056 |
2602
|
1057 Tue Jan 7 00:16:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1058 |
|
1059 * Version 2.0.1 released. |
|
1060 |
2601
|
1061 Sun Jan 5 12:07:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1062 |
|
1063 * dMatrix.cc (Matrix::read): Correctly compute the number of |
|
1064 columns for resizing when the number of rows is specified but the |
|
1065 number of columns is not. |
|
1066 |
2598
|
1067 Wed Dec 18 16:18:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1068 |
2599
|
1069 * Range.cc (operator -): New function. |
|
1070 |
2598
|
1071 * lo-ieee.cc: Include <nan.h> on all systems that have it. |
|
1072 |
2589
|
1073 Fri Dec 13 02:01:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1074 |
|
1075 * Array2-idx.h (assign): Delay resizing left hand side until we |
|
1076 know if the assignment conforms. |
|
1077 |
2583
|
1078 Tue Dec 10 01:43:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1079 |
|
1080 * Version 2.0 released. |
|
1081 |
2570
|
1082 Fri Dec 6 14:41:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1083 |
2575
|
1084 * Array2-idx.h (assign): If index is a colon, set number of |
|
1085 elements to the lhs dimension if the lhs dimension is greater than |
|
1086 zero. Otherwise, set it to the rhs dimension. |
|
1087 |
|
1088 * Version 1.94. |
|
1089 |
2570
|
1090 * Array2-idx.h (assign): Test for rhs scalar case first. |
|
1091 If index is colon, set number of elements to lhs dimension, not |
|
1092 rhs dimension. |
|
1093 |
2563
|
1094 Thu Dec 5 13:05:18 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1095 |
2566
|
1096 * sun-utils.h: Don't declare MAIN_ or MAIN__ here. |
|
1097 * sun-utils.cc: Delete. |
|
1098 * f2c-main.c: New file |
|
1099 |
|
1100 * Makefile.in: Fix file name lists. |
|
1101 |
2563
|
1102 * CMatrix.cc (lssolve): Don't redeclare retval, resize it. |
|
1103 |
2561
|
1104 Wed Dec 4 12:24:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1105 |
|
1106 * dMatrix.cc (Qzval): Don't try to use same memory three times. |
|
1107 Create result using Complex constructor, not multiplication. |
|
1108 Order elements as they are returned from Eispack. |
|
1109 |
2559
|
1110 Mon Dec 2 00:26:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1111 |
2560
|
1112 * lo-ieee.cc (octave_ieee_init): Kluge for octave_Inf on SCO. |
|
1113 Only include nan.h if SCO is defined. Define _IEEE before |
|
1114 including it and undefine it afterward. |
|
1115 [SCO] (isnan): Don't mistake Inf as NaN. |
|
1116 |
2559
|
1117 * Array-idx.h (assign): Only resize if assignment conforms. |
|
1118 |
2551
|
1119 Wed Nov 20 01:00:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1120 |
|
1121 * Makefile.in (INCLUDES): Delete lo-error.h. |
|
1122 * lo-error.h: Delete (moved to libcruft/misc). |
|
1123 |
|
1124 * Version 1.93. |
|
1125 |
2546
|
1126 Tue Nov 19 23:07:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1127 |
2549
|
1128 * oct-glob.cc (glob_match::match): Don't expect our flag values to |
|
1129 be the same as they are in fnmatch.h. |
|
1130 |
2546
|
1131 * f77-fcn.c, f77-fcn.h: Move to libcruft/misc directory. |
|
1132 |
|
1133 * Makefile.in (INCLUDES): Delete f77-fcn.h. |
|
1134 (SOURCES): Delete f77-fcn.c. |
|
1135 |
2522
|
1136 Fri Nov 15 13:47:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1137 |
|
1138 * lo-ieee.h: [SCO]: Declare isinf and isnan. |
|
1139 |
2512
|
1140 Thu Nov 14 00:06:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1141 |
|
1142 * Version 1.92. |
|
1143 |
2508
|
1144 Wed Nov 13 11:19:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1145 |
2512
|
1146 * cmd-hist.cc (command_history::add): Ignore empty input lines, or |
|
1147 lines that have only carriage return or newline. |
|
1148 |
2508
|
1149 * lo-ieee.cc (isnan, isinf): Provide functions for SCO. |
|
1150 |
2500
|
1151 Tue Nov 12 11:11:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1152 |
|
1153 * idx-vector.cc (idx_is_inf_or_nan): New function. |
|
1154 (IDX_VEC_REP::idx_vector_rep): Use it. |
|
1155 |
2493
|
1156 Sun Nov 10 17:09:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1157 |
|
1158 * str-vec.h, str-vec.cc: Add constructors to make string vectors |
|
1159 from vectors of C strings. |
|
1160 |
|
1161 * oct-glob.h, oct-glob.cc (glob_match): Allow pat to be a string |
|
1162 vector. |
|
1163 (glob_match::match): Allow match string to be a string vector. |
|
1164 (glob_match::glob): New function. |
|
1165 |
|
1166 * chMatrix.cc (charMatrix::row_as_string): New arg, strip_ws. |
|
1167 |
|
1168 * Array-b.cc: New file. |
|
1169 * Makefile.in (TI_SRC): Add it to the list. |
|
1170 |
2492
|
1171 Fri Nov 8 18:09:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1172 |
|
1173 * file-ops.cc: Change #include "" to #include <> for safe-lstat.h |
|
1174 and safe-stat.h, to avoid getting them from $srcdir when we really |
|
1175 want the version from the build directory. (Maybe this should be |
|
1176 done for all the include files, not just those that are |
|
1177 auto-generated? Hmm.) |
|
1178 |
2481
|
1179 Thu Nov 7 10:45:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1180 |
2482
|
1181 * Version 1.91. |
|
1182 |
2481
|
1183 * Array3.cc (Array3<T>::resize): Make it work. |
|
1184 |
|
1185 Wed Nov 6 22:44:33 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1186 |
|
1187 * oct-alloc.h, oct-alloc.cc: New files. |
|
1188 * Makefile.in: Add them to the lists. |
|
1189 |
|
1190 Mon Nov 4 21:49:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1191 |
|
1192 * dbleQRP.cc (QRP::QRP): Don't pass tmp data to unsafe constructor. |
|
1193 * CmplxQRP.cc (ComplexQRP::ComplexQRP): Ditto. |
|
1194 |
2466
|
1195 Sun Nov 3 15:45:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1196 |
|
1197 * file-ops.cc (file_stat::is_blk, file_stat::is_chr, |
|
1198 file_stat::is_dir, file_stat::is_fifo, file_stat::is_lnk, |
|
1199 file_stat::is_reg, file_stat::is_sock): Just return false if the |
|
1200 underlying macro is not defined. |
|
1201 |
|
1202 * oct-math.h (lgamma, gamma): Delete declarations. |
|
1203 (asinh, acosh, atanh, erf, erfc): Declare arg types too. |
|
1204 Protect declarations with #ifdef HAVE_*. |
|
1205 |
2440
|
1206 Wed Oct 30 11:42:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1207 |
2452
|
1208 * Version 1.90. |
|
1209 |
|
1210 * Makefile.in (DISTFILES): Add ChangeLog. |
|
1211 |
2444
|
1212 * cmd-hist.cc: Only include fcntl.h if HAVE_FCNTL_H. |
|
1213 |
|
1214 * Matrix-ext.cc: Include <cfloat>, not <float.h>. |
|
1215 |
2443
|
1216 * CMatrix.cc, cmd-hist.cc, file-ops.cc, file-ops.h, filemode.c, |
2444
|
1217 mkdir.c, rename.c, rmdir.c, safe-xstat.cin, statdefs.h, sysdir.h, |
|
1218 tempname.c, utils.cc: Only include sys/types.h if HAVE_SYS_TYPES_H. |
2443
|
1219 |
2440
|
1220 * Array3.h (T Array3<T>::checkelem): Return T() for bogus value, |
|
1221 since that is now accepatble syntax, even for built-in types. |
|
1222 * Array2.h (T Array2<T>::checkelem): Likewise |
|
1223 |
2433
|
1224 Sat Oct 26 23:37:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1225 |
|
1226 * file-ops.cc (mkfifo) [! HAVE_MKFIFO]: Just print an error |
|
1227 message and return -1. |
|
1228 |
2428
|
1229 Fri Oct 25 01:24:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1230 |
2431
|
1231 * str-vec.h (str_vec_compare): Declare args as const void *, then |
|
1232 cast them to const string * in the body of the function. |
|
1233 |
|
1234 * file-ops.cc (file_stat::mode_as_string): Explicitly construct |
|
1235 string from buf. |
|
1236 |
2428
|
1237 * Array3.h (Array3::checkelem): Tag bogus return value with |
|
1238 GCC_ATTRIBUTE_UNUSED. |
|
1239 * Array2.h (Array2::checkelem): Likewise. |
|
1240 |
2424
|
1241 Thu Oct 24 19:40:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1242 |
|
1243 * Quad.h (Quad): Define virtual destructor. |
|
1244 |
2408
|
1245 Tue Oct 15 11:34:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1246 |
|
1247 * CMatrix.cc (ComplexMatrix::all_elements_are_real): new function. |
|
1248 |
2401
|
1249 Sun Oct 13 11:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1250 |
|
1251 * sun-utils.h: Conditionally declare MAIN__ too. Declare MAIN_ |
|
1252 and MAIN__ extern "C". |
|
1253 * sun-utils.cc: Include sun-utils.h here. Delete extern "C" stuff. |
|
1254 |
2391
|
1255 Sat Oct 12 12:40:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1256 |
|
1257 * MArray-misc.cc: New file. |
|
1258 * Makefile.in (MATRIX_SRC): Add it to the list. |
|
1259 |
|
1260 * mx-inlines.cc (equal): Return bool, not int. |
|
1261 |
|
1262 * idx-vector.h (idx_vector (double)): New constructor. |
|
1263 |
|
1264 * chMatrix.h, chMatrix.cc, CMatrix.h, CMatrix.cc, dMatrix.h, |
|
1265 dMatrix.cc, dDiagMatrix.h, dDiagMatrix.cc, dRowVector.h, |
|
1266 dRowVector.cc, dColVector.h, dColVector.cc, CColVector.h, |
|
1267 CColVector.cc, CDiagMatrix.h, CDiagMatrix.cc, CRowVector.h, |
|
1268 CRowVector.cc: Logical operators return bool, not int. |
|
1269 |
|
1270 * CMatrix.h, CMatrix.cc (ComplexMatrix::any_element_is_inf_or_nan): |
|
1271 New function. |
|
1272 |
|
1273 * dMatrix.h, dMatrix.cc (Matrix::any_element_is_negative, |
|
1274 Matrix::any_element_is_inf_or_nan, Matrix::abs, |
|
1275 Matrix::all_elements_are_inf_or_nan): New functions. |
|
1276 |
|
1277 * Range.h, Range.cc (Range::all_elements_are_ints): New function. |
|
1278 |
|
1279 * MArray.cc, MArray2.cc, MDiagArray2.cc: Call gripe_nonconformant |
|
1280 for errors. Simplify macros by converting FCN to string for error |
|
1281 messages. |
|
1282 |
|
1283 * Array-idx.h (Array<T>::index): New function. Don't call |
|
1284 clear_index() here. |
|
1285 (Array<T>::value): Call it, do call clear_index() here. |
|
1286 * Array2-idx.h (Array<T>::value, Array<T>::index): Likewise, for |
|
1287 one and two arg index functions. |
|
1288 |
|
1289 Tue Sep 17 21:21:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1290 |
|
1291 * DAEFunc.h: Delete #pragma interface since there is no longer a |
|
1292 separate implementation file. |
|
1293 |
2354
|
1294 Tue Aug 20 17:38:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1295 |
2358
|
1296 * Makefile.in (stamp-picdir): Only create a pic subdirectory if |
|
1297 SHARED_LIBS is true AND CPICFLAG or CXXPICFLAG is not empty. |
|
1298 |
2356
|
1299 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Rename arg sort to |
|
1300 sort_uniq. If sort_uniq is nonzero, sort the elements and make |
|
1301 them uniq. |
|
1302 |
2354
|
1303 * CMatrix.cc (ComplexMatrix::row_max, ComplexMatrix::row_min, |
|
1304 ComplexMatrix::column_max, ComplexMatrix::column_min): |
|
1305 Rewrite. Also return index as a reference arg. |
|
1306 (ComplexMatrix::row_max_loc, ComplexMatrix::row_min_loc, |
|
1307 ComplexMatrix::column_max_loc, ComplexMatrix::column_min_loc): |
|
1308 Delete. |
|
1309 |
|
1310 * dMatrix.cc (Matrix::row_max, Matrix::row_min, |
|
1311 Matrix::column_max, Matrix::column_min): |
|
1312 Rewrite. Also return index as a reference arg. |
|
1313 (Matrix::row_max_loc, Matrix::row_min_loc, |
|
1314 Matrix::column_max_loc, Matrix::column_min_loc): Delete. |
|
1315 |
|
1316 Fri Aug 9 05:01:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1317 |
|
1318 * dMatrix.cc (Matrix::row_min, Matrix::row_min_loc, |
|
1319 Matrix::row_max, Matrix::row_max_loc, Matrix::column_min, |
|
1320 Matrix::column_min_loc, Matrix::column_max, |
|
1321 Matrix::column_max_loc): Ignore leading NaNs. |
|
1322 * CMatrix.cc (ComplexMatrix::row_min, ComplexMatrix::row_min_loc, |
|
1323 ComplexMatrix::row_max, ComplexMatrix::row_max_loc, |
|
1324 ComplexMatrix::column_min, ComplexMatrix::column_min_loc, |
|
1325 ComplexMatrix::column_max, ComplexMatrix::column_max_loc): Ignore |
|
1326 leading NaNs. |
|
1327 |
2352
|
1328 Thu Aug 8 16:04:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1329 |
|
1330 * QPSOL.cc (QPSOL::do_minimize): Insert linear constraint bounds |
|
1331 starting at n, not 0. |
|
1332 |
2349
|
1333 Sat Jul 27 02:54:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1334 |
|
1335 * dMatrix.cc (Matrix::Matrix (const RowVector&), |
|
1336 Matrix::Matrix (const ColumnVector&)): New constructors. |
|
1337 |
|
1338 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const RowVector&), |
|
1339 ComplexMatrix::ComplexMatrix (const ColumnVector&), |
|
1340 ComplexMatrix::ComplexMatrix (const ComplexRowVector&), |
|
1341 ComplexMatrix::ComplexMatrix (const ComplexColumnVector&)): |
|
1342 New constructors. |
|
1343 |
|
1344 * chMatrix.cc (charMatrix::charMatrix (const string_vector&)): |
|
1345 New constructor. |
|
1346 |
2343
|
1347 Wed Jul 24 16:39:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1348 |
|
1349 * LSODE.cc (do_integrate): Check to make sure that the state and |
|
1350 derivative vectors are the same size. |
2344
|
1351 * DASSL.cc (do_integrate): Likewise. |
2343
|
1352 |
2330
|
1353 Sun Jul 14 17:30:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1354 |
|
1355 * dMatrix.cc (Matrix::read, Matrix::write): Convert to use |
|
1356 iostreams and handler data format conversions. Delete old methods |
|
1357 that used stdio. |
|
1358 |
|
1359 * data-conv.h, data-conv.cc (oct_data_conv): New class. |
|
1360 |
|
1361 Fri Jul 12 13:52:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1362 |
|
1363 * mach-info.h: Rename from float-fmt.h. |
|
1364 * mach-info.cc: Rename from float-fmt.cc. |
|
1365 Handle machine information using a singlton class. |
|
1366 * Makefile.in: Update appropriate lists. |
|
1367 |
|
1368 Tue Jul 9 11:49:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1369 |
|
1370 * Array-flags.cc: Provide definitions for the flags even if |
|
1371 OCTAVE_SOURCE is not defined. |
|
1372 |
|
1373 * Array.h, Array2.h, Array3.h: BOUNDS_CHECKING now affects |
|
1374 operator(), not elem(). |
|
1375 * Array3.h: Move indexing methods here from Array3.cc. |
|
1376 |
|
1377 Mon Jun 24 02:30:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1378 |
|
1379 * Array3.cc (checkelem): Fix typo in call to Array2<T>::elem(). |
|
1380 |
|
1381 * Makefile.in (install-lib): Use INSTALL_PROGRAM instead of |
|
1382 INSTALL_DATA for shared libs. |
|
1383 |
|
1384 Thu Jun 6 09:59:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1385 |
|
1386 * Quad.cc: Include lo-error.h here too. |
|
1387 |
|
1388 Mon May 27 12:41:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1389 |
|
1390 * file-ops.h: Include sys/types.h here. |
|
1391 |
|
1392 Wed May 22 00:20:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1393 |
|
1394 * chMatrix.cc (charMatrix::transpose): Provide definition. |
|
1395 |
|
1396 * Array-idx.h (maybe_delete_elements): Correctly compute number of |
|
1397 elements in result. |
|
1398 * Array2-idx.h (maybe_delete_elements): Likewise for number of |
|
1399 rows and columns in result. |
|
1400 |
|
1401 Tue May 21 23:46:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1402 |
|
1403 * dbleQR.cc (QR::QR): Don't create result from to-be-deleted data. |
|
1404 * CmplxQR.cc (ComplexQR::ComplexQR): Likewise. |
|
1405 |
|
1406 Fri May 17 03:06:02 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1407 |
|
1408 * Makefile.in (install-inc): Install in octincludedir, not includedir. |
|
1409 |
|
1410 Sun May 12 03:40:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1411 |
|
1412 * Makefile.in (uninstall): Also delete shared library. |
|
1413 Split install into install-libs and install-includes. |
|
1414 (install-inc): If linkdir is a directory, leave it alone. |
|
1415 |
|
1416 * sun-utils.cc (MAIN__): Define for Linux/ELF systems. |
|
1417 |
|
1418 Thu May 2 20:19:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1419 |
|
1420 * Array-idx.h (assign): Handle A(:) = X for A undefined or empty. |
|
1421 * Array2-idx.h (assign): Likewise. |
|
1422 |
|
1423 Tue Apr 30 05:43:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1424 |
|
1425 * Array2.cc (Array2<T>::range_error): New functions. |
|
1426 |
|
1427 * Array.h (class Array<T>): elem() and operator() are now |
|
1428 equivalent, and do bounds checking by default. |
|
1429 * Array2.cc (class Array2<T>): Likewise. |
|
1430 |
|
1431 Sat Apr 6 21:26:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1432 |
|
1433 * Makefile.in (maintainer-clean, distclean): Also delete |
|
1434 stamp-picdir, stamp-shared, and pic directory. |
|
1435 (stamp-prereq): New target. |
|
1436 |
|
1437 Fri Mar 29 13:44:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1438 |
|
1439 * NPSOL.h (NPSOL_options::set_option (const char *, int)): |
|
1440 New function. |
|
1441 |
|
1442 * Array.h, Array.cc (Array<T>::range_error ()): New functions. |
|
1443 * Array.h (Array<T>::checkelem): Use them. |
|
1444 |
|
1445 * base-lu.h, base-lu.cc: Parameterize based on types of matrix |
|
1446 elements too. |
|
1447 * dbleLU.h, dbleLU.cc, CmplxLU.h, CmplxLU.cc: Change to match. |
|
1448 |
|
1449 * MDiagArray2.h (MDiagArray2 (const MArray<T>& a)): Delete. |
|
1450 |
|
1451 * Makefile.in (distclean): Delete so_locations, which is created |
|
1452 on DEC Alpha systems. |
|
1453 |
|
1454 Sat Mar 23 04:02:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1455 |
|
1456 * Array.h (HEAVYWEIGHT_INDEXING): Do define this here if it is not |
|
1457 already defined. |
|
1458 |
|
1459 Fri Mar 22 23:53:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1460 |
|
1461 * pathsearch.cc: Include config.h. |
|
1462 |
|
1463 Wed Mar 20 04:54:03 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1464 |
|
1465 * Array2-idx.h (assign (Array2<LT>&, const Array2<RT>&)): Don't |
|
1466 allow M(I, J) = scalar if I or J is empty. |
|
1467 |
|
1468 * Array-idx.h: Delete Array2 and Array3 code (now in Array2-idx.h |
|
1469 and Array3-idx.h). |
|
1470 |
|
1471 Thu Mar 7 10:20:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1472 |
|
1473 * lo-error.h: Make comments C friendly. |
|
1474 |
|
1475 Sun Mar 3 14:04:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1476 |
|
1477 * Array2.h (make_unique): Move all indexing functions here. |
|
1478 * Array2.cc: From here. |
|
1479 |
|
1480 * Array.h, Array2.h (NO_BOUNDS_CHECKING): New macro to control |
|
1481 whether operator() calls elem or checkelem. |
|
1482 |
|
1483 * Array.h (make_unique): New private function. |
|
1484 Move all indexing functions here. |
|
1485 * Array.cc: From here. |
|
1486 |
|
1487 * pathsearch.cc (dir_path::find_all): Index tmp, don't dereference |
|
1488 it too. |
|
1489 |
|
1490 * Array-d.cc, Array-ch.cc, Array-C.cc, Array-s.cc, Array-str.cc, |
|
1491 Array-i.cc, MArray-i.cc, MArray-s.cc, MArray-d.cc, MArray-ch.cc, |
|
1492 MArray-C.cc: Include config.h. |
|
1493 |
|
1494 * Array.h, Array2.h, DiagArray2.h, Array3.h: |
|
1495 Don't define HEAVYWEIGHT_INDEXING here. |
|
1496 |
|
1497 Sat Mar 2 18:39:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1498 |
|
1499 * base-lu.h, base-lu.cc: New files. |
|
1500 * Makefile.in: Add them to the appropriate lists. |
|
1501 * dbleLU.h, dbleLU.cc, CmplxLU.h, Cmplx.cc: Derive from base_lu. |
|
1502 |
|
1503 Fri Mar 1 08:30:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1504 |
|
1505 * Array2.h, Array3.h, DiagArray2.h: New files, extracted from Array.h |
|
1506 * Array2-idx.h, Array3-idx.h: New files, extracted from Array-idx.h |
|
1507 * Array2.cc, Array3.cc, DiagArray2.cc: New files, from Array.cc. |
|
1508 * MArray2.h, MDiagArray2.h: New files, extracted from MArray.h. |
|
1509 * MArray2.cc, MDiagArray2.cc, MArray-defs.h: New files, from MArray.cc. |
|
1510 |
|
1511 * MArray.h (INSTANTIATE_MARRAY_FRIENDS): New macro. |
|
1512 (INSTANTIATE_MARRAY2_FRIENDS): Likewise. |
|
1513 (INSTANTIATE_MDIAGARRAY_FRIENDS): Likewise. |
|
1514 * MArray-C.cc, MArray-ch.cc, MArray-c.cc, MArray-i.cc, MArray-s.cc: |
|
1515 Simplify using new macros. |
|
1516 |
|
1517 Mon Feb 26 03:04:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1518 |
|
1519 * Makefile.in (install): If $(includedir) ends in version string, |
|
1520 make link to name that does not include version info. |
|
1521 |
|
1522 * lo-ieee.cc: Include <cmath> here. |
|
1523 |
|
1524 Fri Feb 16 20:52:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1525 |
|
1526 * lo-ieee.cc, lo-ieee.h: New files. |
|
1527 * lo-mappers.cc, lo-mappers.h: New files. |
|
1528 * lo-utils.cc, lo-utils.h: New files. |
|
1529 * Makefile.in: Add them to the appropriate lists. |
|
1530 |
|
1531 Thu Feb 15 22:02:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1532 |
|
1533 * dMatrix.cc (all_integers, too_large_for_float): New functions. |
|
1534 * CMatrix.cc (all_integers, too_large_for_float): New functions. |
|
1535 |
|
1536 * byte-swap.h, data-conv.h, data-conv.cc, float-fmt.h, |
|
1537 float-fmt.cc: New files. |
|
1538 * Makefile.in: Include them in the appropriate lists. |
|
1539 |
|
1540 Wed Feb 14 01:49:47 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1541 |
|
1542 * dMatrix.cc (Qzval): New function. |
|
1543 |
|
1544 Tue Feb 13 12:41:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1545 |
|
1546 * NPSOL.cc (NPSOL_options::set_option): Arg key is now string, not |
|
1547 char*. |
|
1548 |
|
1549 * DASSL.h, DASSL.cc: Do better management of temporary workspace. |
|
1550 Use F77_XFCN to call Fortran subroutine. |
|
1551 * dColVector.cc, CColVector.cc: Likewise. |
|
1552 * dRowVector.cc, CRowVector.cc: Likewise. |
|
1553 * NPSOL.h, NPSOL.cc: Likewise. |
|
1554 * CmplxCHOL.cc: Likewise. |
|
1555 * dbleCHOL.cc: Likewise. |
|
1556 * CMatrix.cc: Likewise. |
|
1557 * dMatrix.cc: Likewise. |
|
1558 * QPSOL.cc: Likewise. |
|
1559 * LSODE.cc: Likewise. |
|
1560 |
|
1561 Sun Feb 11 14:14:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1562 |
|
1563 * dbleHESS.cc (HESS::init): Dimension of tau is n-1, not n+1. |
|
1564 |
|
1565 * dbleSCHUR.h, dbleSCHUR.cc: Do better management of temporary |
|
1566 workspace. Use F77_XFCN to call Fortran subroutine. |
|
1567 * CmplxAEPBAL.h, CmplxAEPBAL.cc: Likewise. |
|
1568 * CmplxSCHUR.h, CmplxSCHUR.cc: Likewise. |
|
1569 * dbleGEPBAL.h, dbleGEPBAL.cc: Likewise. |
|
1570 * dbleAEPBAL.h, dbleAEPBAL.cc: Likewise. |
|
1571 * CmplxHESS.h, CmplxHESS.cc: Likewise. |
|
1572 * CmplxSVD.h, CmplxSVD.cc: Likewise. |
|
1573 * dbleHESS.h, dbleHESS.cc: Likewise. |
|
1574 * dbleSVD.h, dbleSVD.cc: Likewise. |
|
1575 * EIG.h, EIG.cc; Likewise. |
|
1576 * CollocWt.cc: Likewise. |
|
1577 * NLEqn.cc: Likewise. |
|
1578 * Quad.cc: Likewise. |
|
1579 |
|
1580 Sat Feb 10 12:14:59 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1581 |
|
1582 * dbleLU.h, dbleLU.cc: Do better management of temporary workspace. |
|
1583 Use F77_XFCN to call Fortran subroutine. |
|
1584 * CmplxLU.h, CmplxLU.cc: Ditto. |
|
1585 * dbleQR.h, dbleQR.cc: Ditto. |
|
1586 * CmplxQR.h, CmplxQR.cc: Ditto. |
|
1587 * dbleQRP.h, dbleQRP.cc: Ditto. |
|
1588 * CmplxQRP.h, CmplxQRP.cc: Ditto. |
|
1589 |
|
1590 * dir-ops.h (dir_entry::dir): Declare as void*, not DIR*. |
|
1591 (struct DIR): delete forward declaration. |
|
1592 (dir_entry::operator = (const dir_entry$)): Protect against |
|
1593 copying same object. |
|
1594 * dir-ops.cc: Cast dir appropriately. |
|
1595 |
|
1596 Fri Feb 9 16:12:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1597 |
|
1598 * lo-error.cc: Moved to libcruft/misc. |
|
1599 * Makefile.in: Delete it from the list. |
|
1600 |
|
1601 * f77-fcn.c (f77_context, f77_exception_encountered): Delete |
|
1602 definitions (they have been moved to libcruft/misc/f77-extern.cc). |
|
1603 |
|
1604 * Array-flags.h: New file. |
|
1605 * Array-idx.h: Include it here. |
|
1606 * Makefile.in (MATRIX_INC): Add it to the list. |
|
1607 |
|
1608 * Array-flags.cc: Renamed from Array-ext.cc. |
|
1609 (liboctave_dfi_flag): Renamed from dfi_flag. |
|
1610 (liboctave_pcv_flag): Renamed from pcv_flag. |
|
1611 (liboctave_pzo_flag): Renamed from pzo_flag. |
|
1612 (liboctave_rre_flag): Renamed from rre_flag. |
|
1613 * Array-idx.h: Change all uses of dfi_flag, etc. |
|
1614 * Makefile.in (MATRIX_SRC): Change file name here too. |
|
1615 |
|
1616 * Makefile.in (LIBOCTAVE_LFLAGS, LIBOCTAVE_LIBS): New variables. |
|
1617 (stamp-shared): Use them here. |
|
1618 |
|
1619 Tue Feb 6 09:53:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1620 |
|
1621 * cmd-hist.cc (command_history::ignore_entries): Delete default |
|
1622 argument value. |
|
1623 |
|
1624 Mon Feb 5 12:07:50 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1625 |
|
1626 * CmplxAEPBAL.h, CmplxCHOL.h, CmplxDET.h, CmplxHESS.h, CmplxLU.h, |
|
1627 CmplxQR.h, CmplxQRP.h, CmplxSCHUR.h, CmplxSVD.h, dbleAEPBAL.h, |
|
1628 dbleCHOL.h, dbleDET.h, dbleGEPBAL.h, dbleHESS.h, dbleLU.h, |
|
1629 dbleQR.h, dbleQRP.h, dbleSCHUR.h, dbleSVD.h: |
|
1630 Clean up constructors, assigment operator. |
|
1631 |
|
1632 Sun Feb 4 03:12:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1633 |
|
1634 * NPSOL.cc (do_minimize): Use F77_XFCN to call npsol. |
|
1635 Check f77_exception_encountered on return. |
|
1636 |
|
1637 * f77-fcn.c (f77_exception_encountered): New variable. |
|
1638 (F77_XFCN): Set it. |
|
1639 * f77-fcn.h: Provide declaration. |
|
1640 |
|
1641 * QPSOL.h (QPSOL_options::set_options): Renamed from copy(). |
|
1642 |
|
1643 * NPSOL.h (NPSOL_options::set_options): Renamed from copy(). |
|
1644 |
|
1645 * NLEqn.h (NLEqn_options::set_options): New function. |
|
1646 * Quad.h (Quad_options::set_options): Likewise. |
|
1647 |
|
1648 * LP.h (class LP): Add accessors for LP data. |
|
1649 |
|
1650 * NLEqn.h (NLEqn::n): Delete. |
|
1651 |
|
1652 * NLEqn.h (class NLEqn::n): Likewise. |
|
1653 |
|
1654 * NLP.h (class NLP): Add accessors for NLP data. |
|
1655 |
|
1656 * NPSOL.h (class NPSOL_options): Move constructors, set, and |
|
1657 access functions here. |
|
1658 * NPSOL.cc.cc: From here. |
|
1659 |
|
1660 * QLD.h (class QLD): Add destructor definition. |
|
1661 * Objective.h (class Objective): Likewise. |
|
1662 * ODEFunc.h (class ODEFunc): Likewise. |
|
1663 * NLFunc.h (class NLFunc): Likewise. |
|
1664 * NLEqn.h (class NLEqn): Likewise. |
|
1665 * NLConst.h (class NLConst): Likewise. |
|
1666 * LinConst.h (class LinConst): Likewise. |
|
1667 * LSODE.h (class LSODE_options): Likewise. |
|
1668 * CollocWt.h (class CollocWt): Likewise. |
|
1669 * Bounds.h (class Bounds): Likewise. |
|
1670 |
|
1671 * QLD.cc (QLD::set_default_options): Delete. |
|
1672 |
|
1673 * QP.h (QP): Add accessors for QP data. |
|
1674 Add copy constructor, operator =, and destructor definitions. |
|
1675 |
|
1676 * Range.h, Quad.h, QP.h, QLD.h, Objective.h, NLP.h, NLFunc.h, |
|
1677 NLConst.h, LinConst.h, LSODE.h, LP.h, FEGrid.h, EIG.h, DASSL.h, |
|
1678 DAEFunc.h, CollocWt.h, Bounds.h: |
|
1679 Clean up constructors, assigment operator. |
|
1680 |
|
1681 * dRowVector.cc (RowVector::transpose): Use magic of reference |
|
1682 counting to avoid duplicating the data immediately. |
|
1683 * dColVector.cc (ColumnVector::transpose): Likewise. |
|
1684 * CRowVector.cc (ComplexrowVector::transpose): Likewise. |
|
1685 * CColVector.cc (ComplexColumnVector::transpose): Likewise. |
|
1686 |
|
1687 Sat Feb 3 01:02:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1688 |
|
1689 * prog-args.h (prog_args::option_argument): New enum. |
|
1690 |
|
1691 * f77-fcn.h: Rename from f77-uscore.h. |
|
1692 (F77_XFCN_ERROR, F77_XFCN): New macros. |
|
1693 * f77-fcn.c: New file. |
|
1694 * Makefile.in (SOURCES): Add it to the list. |
|
1695 |
|
1696 * ODEFunc.h: Clean up. |
|
1697 |
|
1698 * DASSL.cc, DASSL.h: New files. |
|
1699 * Makefile.in: Add them to the appropriate lists. |
|
1700 |
|
1701 * LSODE.cc, LSODE.h: New files. |
|
1702 * Makefile.in: Add them to the appropriate lists. |
|
1703 |
|
1704 * ODE.cc: Delete. |
|
1705 * Makefile.in (SOURCES): Remove from list. |
|
1706 |
|
1707 * base-de.h, DAE.cc: New files. |
|
1708 * Makefile.in: Add them to the appropriate lists. |
|
1709 * ODE.h: Only define interface for ODE classes. |
|
1710 * DAE.h: Only define interface for ODE classes. |
|
1711 |
|
1712 * LPsolve.cc (do_minimize): Print sorry not implemented message. |
|
1713 (LPsolve::set_default_options)): Delete |
|
1714 * LPsolve.h (class LPsolve): Add operator =, copy constructor, and |
|
1715 destructor. |
|
1716 |
|
1717 * LP.h (class LP): Add operator =, copy constructor, and destructor. |
|
1718 |
|
1719 * QPSOL.h (QPSOL::QPSOL (const QPSOL&)): New constructor. |
|
1720 (QPSOL::operator =): Call base class operator = instead of assuming |
|
1721 we know what to copy. |
|
1722 |
|
1723 * base-min.h (size): New function. |
|
1724 |
|
1725 * NLP.h (NLP::size): Delete. |
|
1726 (NLP::NLP (const NLP&)): New constructor. |
|
1727 (NLP::operator =): Call base class operator = instead of assuming |
|
1728 we know what to copy. |
|
1729 |
|
1730 * NPSOL.h, NPSOL.cc (NPSOL::option): Delete. |
|
1731 (class NPSOL): Add operator = and destructor. |
|
1732 |
|
1733 * NPSOL.h: Add NPSOL_options() to list of constructor initalizers. |
|
1734 |
|
1735 Fri Feb 2 22:52:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1736 |
|
1737 * Makefile.in (liboctave.a): Depend on $(PICOBJ). |
|
1738 |
|
1739 Wed Jan 31 05:29:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1740 |
|
1741 * dMatrix.cc (Givens, Sylvester, Matrix::expm): New functions. |
|
1742 * CMatrix.cc (Givens, Sylvester, ComplexMatrix::expm): Ditto. |
|
1743 |
|
1744 Mon Jan 29 00:00:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1745 |
|
1746 * prog-args.h, prog-args.cc: New files. |
|
1747 * Makefile.in: Add them to lists. |
|
1748 |
|
1749 * getopt.h, getopt.c, getopt1.c: New files. |
|
1750 * Makefile.in: Add them to the lists. |
|
1751 |
|
1752 * oct-term.h, oct-term.cc: New files. |
|
1753 * Makefile.in: Add them to the lists. |
|
1754 |
|
1755 * str-vec.cc: New file. |
|
1756 * Makefile.in (SOURCES): Add it to the list. |
|
1757 |
|
1758 * file-ops.cc (oct_tmpnam): Move here from src/utils.cc. |
|
1759 |
|
1760 * tempname.c, tempnam.c: Move here from src directory. |
|
1761 * Makefile.in: Add to lists. |
|
1762 |
|
1763 Sun Jan 28 23:06:19 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1764 |
|
1765 * cmd-hist.h, cmd-hist.cc: New files. |
|
1766 * Makefile.in: Add them to lists. |
|
1767 |
|
1768 Thu Jan 25 20:36:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1769 |
|
1770 * oct-glob.h, oct-glob.cc: New files. |
|
1771 * Makefile.in: Add them to lists. |
|
1772 |
|
1773 Wed Jan 24 01:55:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1774 |
|
1775 * pathsearch.h, pathsearch.cc: New files. |
|
1776 * Makefile.in: Add them to lists. |
|
1777 |
|
1778 * dir-ops.h, dir-ops.cc: New files. |
|
1779 * sysdir.h: Move here from src directory. |
|
1780 * Makefile.in: Add them to lists. |
|
1781 |
|
1782 * Array.h (Array::qsort): Return *this, not void. |
|
1783 * str-vec.h (string_vector::qsort): Likewise. |
|
1784 |
|
1785 * chMatrix.cc (row_as_string): Resize result to eliminate |
|
1786 unnecessary NULs. |
|
1787 |
|
1788 Tue Jan 23 00:40:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1789 |
|
1790 * safe-xstat.hin, safe-xstat.cin, statdefs.h, file-ops.h, |
|
1791 file-ops.cc, filemode.c, mkdir.c, rmdir.c, rename.c: |
|
1792 Files moved here from src directory. |
|
1793 * Makefile.in: Add them to lists. Include appropriate rules. |
|
1794 |
|
1795 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
1796 Use pointers, not references (this is C code!). |
|
1797 |
|
1798 * oct-math.h: New file. |
|
1799 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
1800 Files moved here from src directory. |
|
1801 * Makefile.in: Add them to lists. |
|
1802 |
|
1803 Sun Jan 21 22:53:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1804 |
|
1805 * idx-vector.cc (make_uniq): Fix major brain-o. |
|
1806 |
|
1807 * CmplxSCHUR.h, CmplxSCHUR.cc, dbleSCHUR.h, dbleSCHUR.cc: |
|
1808 Convert to use string class instead of char*. |
|
1809 |
|
1810 * str-vec.h, Array-str.cc: New files. |
|
1811 |
|
1812 * Array.h (Array::qsort): New function. |
|
1813 |
|
1814 Fri Jan 12 01:45:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1815 |
|
1816 * Array.h: Nest ArrayRep class inside Array class. |
|
1817 Refer to ArrayRep, not ArrayRep<T>. |
|
1818 Move all ArrayRep functions inline. |
|
1819 Don't declare other Array classes as friends of ArrayRep. |
|
1820 * Array.cc: Delete ArrayRep functions. |
|
1821 * Array-idx.h: Refer to ArrayRep, not ArrayRep<T>. |
|
1822 |
|
1823 * Array-C.cc, Array-ch.cc, Array-d.cc, Array-i.cc, Array-s.cc: |
|
1824 Don't instantiate ArrayRep objects. |
|
1825 |
|
1826 Wed Jan 10 04:40:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1827 |
|
1828 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
1829 New constructor. |
|
1830 |
|
1831 Tue Jan 9 04:44:56 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1832 |
|
1833 * dbleGEPBAL.cc (GEPBALANCE::init): Use string instead of char* |
|
1834 for balance_job arg. |
|
1835 * dbleAEPBAL.cc (AEPBALANCE::init): Likewise. |
|
1836 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Likewise. |
|
1837 |
|
1838 * chMatrix.cc (row_as_string): Return string, not const char*. |
|
1839 |
|
1840 Mon Jan 8 03:20:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1841 |
|
1842 * Makefile.in (clean): If $(SHARED_LIBS), also remove shared libs. |
|
1843 |
|
1844 * chMatrix.cc (row_as_string): Undo previous change. |
|
1845 |
|
1846 Sun Jan 7 19:50:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1847 |
|
1848 * chMatrix.cc (row_as_string): Do memory management here. Caller |
|
1849 is expected to save string if necessary. |
|
1850 |
|
1851 Sat Jan 6 19:28:20 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1852 |
|
1853 * Array.h (class DiagArray): Enable nested Proxy class for all |
|
1854 platforms. |
|
1855 |
|
1856 * Array.cc (Array<T>::operator = (const Array<T>&)): If rep == |
|
1857 a.rep, don't mess with count. |
|
1858 * Array.h (Array2<T>& operator = (const Array2<T>&)): Likewise, |
|
1859 don't do anything if reps are the same. |
|
1860 (Array3<T>& operator = (const Array3<T>&) |
|
1861 |
|
1862 * Array.h (ArrayRep<T>::operator = (const ArrayRep<T>&)): |
|
1863 Declare private with no definition to prevent misuse. |
|
1864 |
|
1865 * Array.cc (Array2<T>::insert (const Array2<T>&, int, int)): |
|
1866 Get range check right. |
|
1867 * dMatrix.cc (Matrix::insert (const RowVector&, int, int)): Ditto. |
|
1868 (Matrix::insert (const ColumnVector&, int, int)): Ditto. |
|
1869 (Matrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
1870 * CMatrix.cc (ComplexMatrix::insert (const Matrix&, int, int)): Ditto. |
|
1871 (ComplexMatrix::insert (const RowVector&, int, int)): Ditto. |
|
1872 (ComplexMatrix::insert (const ColumnVector&, int, int)): Ditto. |
|
1873 (ComplexMatrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
1874 (ComplexMatrix::insert (const ComplexRowVector&, int, int)): Ditto. |
|
1875 (ComplexMatrix::insert (const ComplexColumnVector&, int, int)): Ditto. |
|
1876 (ComplexMatrix::insert (const ComplexDiagMatrix&, int, int)): Ditto. |
|
1877 * dRowVector.cc (RowVector::insert (const RowVector&, int)): Ditto. |
|
1878 * dColVector.cc |
|
1879 (ColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
1880 * CRowVector.cc |
|
1881 (ComplexRowVector::insert (const RowVector&, int)): Ditto. |
|
1882 (ComplexRowVector::insert (const ComplexRowVector&, int)): Ditto. |
|
1883 * CColVector.cc |
|
1884 (ComplexColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
1885 (ComplexColumnVector::insert (const ComplexColumnVector&, int)): Ditto. |
|
1886 |
|
1887 * dMatrix.cc (Matrix::insert (const DiagMatrix&, int, int)): |
|
1888 Also fill in zeros, not just the diagonal. |
|
1889 |
|
1890 * CDiagMatrix.cc (ComplexDiagMatrix::fill (double, int, int)): |
|
1891 Use END parameter properly. |
|
1892 (ComplexDiagMatrix::fill (const Complex&, int, int)): Ditto. |
|
1893 * dDiagMatrix.cc (DiagMatrix::fill (double, int, int)): Ditto. |
|
1894 |
|
1895 * Array.h (ArrayRep<T>::ArrayRep (void)): Set count to 1 here. |
|
1896 (ArrayRep<T>::ArrayRep (T *, int)): Likewise. |
|
1897 * Array.cc (ArrayRep<T>::ArrayRep (const ArrayRep<T>&)): |
|
1898 Don't copy count. Set it to 1. |
|
1899 (ArrayRep<T>::ArrayRep (int)): Set count to 1 here. |
|
1900 |
|
1901 * Array.h (Array<T>::Array (T *, int)): After constructing rep, |
|
1902 don't set rep->count to 1 here (now handled by ArrayRep |
|
1903 constructors). |
|
1904 (Array<T>::Array (void)): Ditto. |
|
1905 (Array<T>::Array (int)): Ditto. |
|
1906 (Array<T>::T& elem (int)): Ditto. |
|
1907 * Array-idx.h (Array<T>::maybe_delete_elements (idx_vector&)): Ditto. |
|
1908 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): Ditto. |
|
1909 * Array.cc: (Array<T>::Array (int, const T&)): Ditto. |
|
1910 (Array<T>::resize (int)): Ditto. |
|
1911 (Array<T>::resize (int, const T&)) :Ditto. |
|
1912 (Array<T>::fortran_vec (void)): Ditto. |
|
1913 (Array2<T>::resize (int, int)): Ditto. |
|
1914 (Array2<T>::resize (int, int, const T&)): Ditto. |
|
1915 (DiagArray<T>::resize (int, int)): Ditto. |
|
1916 (DiagArray<T>::resize (int, int, const T&)): Ditto. |
|
1917 |
|
1918 Sun Dec 31 21:23:26 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1919 |
|
1920 * Array-ch.cc: Rename from Array-c.cc. |
|
1921 * MArray-ch.cc: Rename from MArray-c.cc. |
|
1922 * chMatrix.cc: Rename from cMatrix.cc. |
|
1923 * chMatrix.h: Rename from cMatrix.h. |
|
1924 * Makefile.in (TI_SRC): Use new names here. |
|
1925 * mx-base.h: Likewise. |
|
1926 |
|
1927 Fri Dec 29 21:45:00 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1928 |
|
1929 * Makefile.in: Handle shared libraries. |
|
1930 |
|
1931 Thu Dec 28 14:18:34 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1932 |
|
1933 * CRowVector.cc (operator * (ComplexRowVector, ComplexMatrix)): |
|
1934 Correctly compute length of return value. Correct rows and |
|
1935 columns in zgemv call. |
|
1936 * dRowVector.cc (operator * (RowVector, Matrix)): Likewise. |
|
1937 |
|
1938 Tue Dec 26 00:37:57 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1939 |
|
1940 * Makefile.in (stamp-picdir): New target. |
|
1941 (all): Depend on it. |
|
1942 |
|
1943 Sun Dec 24 03:10:41 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1944 |
|
1945 * Makefile.in (INCLUDES): Remove QLD.h. |
|
1946 (SOURCES): Remove QLD.cc. |
|
1947 |
|
1948 Wed Dec 20 00:43:46 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1949 |
|
1950 * dMatrix.cc (Matrix::inverse): New arg, force. |
|
1951 If force is nonzero, invert even if matrix is singular. |
|
1952 (ComplexMatrix::inverse): Likewise. |
|
1953 |
|
1954 * dRowVector.cc, mx-inlines.cc, dMatrix.cc, dDiagMatrix.cc, |
|
1955 dColVector.cc,MArray-C.cc, CmplxDET.cc, CRowVector.cc, CMatrix.cc, |
|
1956 CDiagMatrix.cc, CColVector.cc, Array-C.cc, CmplxDET.h, CMatrix.h: |
|
1957 Include "oct-cmplx.h" instead of <Complex.h>. |
|
1958 |
|
1959 * mx-defs.h: Include oct-cmplx.h in place of forward declaration |
|
1960 for class Complex. |
|
1961 |
|
1962 * oct-cmplx.h: New file. |
|
1963 * Makefile.in (INCLUDES): Add it to the list. |
|
1964 |
|
1965 * idx-vector.cc (IDX_VEC_REP::idx_vector_rep): Don't redeclare len. |
|
1966 (IDX_VEC_REP::maybe_convert_one_zero_to_idx): Don't redeclare count. |
|
1967 (IDX_VEC_REP::freeze): Don't redeclare max_val and min_val. |
|
1968 (intcmp, sort_data, make_uniq, copy_data, IDX_VEC_REP::print): |
|
1969 Avoid g++ bugs. |
|
1970 |
|
1971 Tue Nov 14 14:24:16 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
1972 |
|
1973 * Array-idx.h (maybe_delete_elements): Give useful error message. |
|
1974 |
|
1975 * dbleSCHUR.cc, dbleSVD.cc: Include iostream.h. |
|
1976 |
|
1977 Mon Nov 13 08:35:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
1978 |
|
1979 * CDiagMatrix.cc (inverse): Return retval, not *this. |
|
1980 * dDiagMatrix.cc (inverse): Use same method as for Complex case. |
|
1981 |
|
1982 Sat Nov 4 05:06:12 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
1983 |
|
1984 * Array.h, Array.cc, Array-idx.h [HEAVYWEIGHT_INDEXING]: Keep |
|
1985 index vector object with Array, not ArrayRep. |
|
1986 |
|
1987 Fri Nov 3 06:52:38 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
1988 |
|
1989 * Array-idx.h (assign (Array2<T>&, const Array2<T>&): Don't fail |
|
1990 if index is a colon and resizing is maybe needed. |
|
1991 |
|
1992 Tue Oct 31 17:40:01 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
1993 |
|
1994 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Don't return true |
|
1995 if we have a vector of 1's. |
|
1996 |
|
1997 * Array-idx.h (assign (Array2<LT>&, Array2<RT>&): If lhs has no |
|
1998 current orientation, require index and rhs to conform unless |
|
1999 do_fortran_indexing flag is set. |
|
2000 |
|
2001 Sun Oct 15 23:32:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2002 |
|
2003 * Array-d.cc, Array-C.cc, mx-base.h, mx-inlines.cc, dDiagMatrix.h, |
|
2004 CDiagMatrix.h, CMatrix.cc, CMatrix.h, dMatrix.h, mx-defs.h, |
|
2005 cMatrix.h, MArray.cc, MArray.h, MArray-i.cc, MArray-c.cc, |
|
2006 MArray-s.cc, Array.h, Array.cc, Array-c.cc, Array-i.cc, |
|
2007 Array-s.cc, cMatrix.cc, Array-idx.h, dMatrix.cc: |
|
2008 Massive changes to support additional data types. Only charMatrix |
|
2009 is currently used in Octave. |
|
2010 |
|
2011 Thu Oct 12 02:22:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2012 |
|
2013 * Array.cc (Array2<T>::insert (Array2<T>&, int, int): New function. |
|
2014 * CMatrix.cc (ComplexMatrix::insert (ComplexMatrix&, int, int): |
|
2015 Simply call Array2<Complex> version. |
|
2016 * dMatrix.cc (Matrix::insert (Matrix&, int, int): Similarly, just |
|
2017 call Array2<double> version. |
|
2018 |
|
2019 * Array-C.cc, Array-d.cc: Instantiate new assign functions too. |
|
2020 |
|
2021 * Array.h, Array.cc: Massive overhaul to support new way of |
|
2022 handling indexing. |
|
2023 * idx-vector.h, idx-vector.cc: Likewise. |
|
2024 * Array-ext.cc, Array-idx.h: New files. |
|
2025 * Makefile.in: Add them to the appropriate lists. |
|
2026 |
|
2027 Wed Oct 11 00:49:58 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2028 |
|
2029 * Range.cc (nelem_internal): Use tfloor here, not round. |
|
2030 |
|
2031 Sun Oct 8 18:21:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2032 |
|
2033 * idx-vector.h, idx-vector.cc: New files, moved from ../src. |
|
2034 * Makefile.in (SOURCES, INCLUDES): Include them in the lists. |
|
2035 |
|
2036 Sat Oct 7 19:07:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2037 |
|
2038 * CMatrix.cc (pseudo_inverse): Avoid bogus g++ warning. |
|
2039 |
|
2040 * Array.h: Move simple member functions here. |
|
2041 * Array.cc: From here. |
|
2042 |
|
2043 Fri Oct 6 00:36:04 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2044 |
|
2045 * Range.cc (tfloor, tceil, round): New static functions. |
|
2046 (Range::nelem_internal): Rewrite to use better method. |
|
2047 |
|
2048 * dbleSVD.h (SVD::type): New item, sigma_only. |
|
2049 (type_computed): New var. |
|
2050 * dbleSVD.cc (left_singular_matrix, right_singular_matrix): |
|
2051 Handle possible error condition. |
|
2052 (init): Allow for SVD::sigma_only, save type computed. |
|
2053 * CmplxSVD.cc (left_singular_matrix, right_singular_matrix): |
|
2054 Handle possible error condition. |
|
2055 (init): Allow for SVD::sigma_only, save type computed. |
|
2056 |
|
2057 Wed Oct 4 15:33:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2058 |
|
2059 * Nearly all non-matrix .h and .cc files: |
|
2060 Move short function bodies into class declarations for inlining. |
|
2061 Generally clean up. |
|
2062 |
|
2063 * base-min.h: New file. |
|
2064 * LP.h (class LP): Derive from base_minimizer. |
|
2065 * QLP.h (class QLP): Derive from base_minimizer. |
|
2066 * NLP.h (class NLP): Derive from base_minimizer. |
|
2067 * Makefile.in (INCLUDES): Add base-min.h to the list. |
|
2068 |
|
2069 * Makefile.in (SOURCES): Delete DAEFunc.cc, LP.cc, NLConst.cc, |
|
2070 NLFunc.cc, Objective.cc and QP.cc from list. |
|
2071 |
|
2072 Tue Sep 26 04:14:23 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2073 |
|
2074 * dbleSCHUR.cc (select_ana): Remove name of unused parameter. |
|
2075 (SCHUR::SCHUR): Delete unused parameter ord. |
|
2076 * CmplxSCHUR.h (ComplexSCHUR::CmplxSCHUR): Likewise. |
|
2077 |
|
2078 * CRowVector.cc |
|
2079 (ComplexRowVector::operator+ (const Complex&, const RowVector&), |
|
2080 (ComplexRowVector::operator- (const Complex&, const RowVector&), |
|
2081 (ComplexRowVector::operator* (const Complex&, const RowVector&), |
|
2082 (ComplexRowVector::operator/ (const Complex&, const RowVector&)): |
|
2083 Actually do something. |
|
2084 |
|
2085 * dMatrix.cc (Matrix::lssolve (ComplexMatrix&)): Use dummy vars. |
|
2086 (Matrix::lssolve (ComplexMatrix&, int&)): Likewise. |
|
2087 (Matrix::lssolve (ComplexMatrix&, int&, int&)): Likewise. |
|
2088 |
|
2089 * Quad.cc (Quad_options::Quad_options (double, double)): New function. |
|
2090 * (Quad::Quad (integrand_fcn, double, double): Properly initialize |
|
2091 tolerances. |
|
2092 |
|
2093 * DAE.cc (ddassl_f, ddassl_j): Remove names of unused parameters. |
|
2094 * LPsolve.cc (LPsolve::minimize): Likewise. |
|
2095 * NPSOL.cc (NPSOL::option, npsol_confun, npsol_objfun): Likewise. |
|
2096 * ODE.cc (lsode_f, lsode_j): Likewise. |
|
2097 * QPSOL.cc (qphess): Likewise. |
|
2098 |
|
2099 Fri Sep 22 04:14:51 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2100 |
|
2101 * dMatrix.cc: Include <cstring>. |
|
2102 |
|
2103 * Array.cc: Try harder to avoid warnings from gcc in functions |
|
2104 that return bogus values after calling the error handler. |
|
2105 |
|
2106 Thu Sep 14 00:56:00 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2107 |
|
2108 * Makefile.in: Use `ifndef omit_deps', not `ifndef $(omit_deps)'. |
|
2109 |
|
2110 * Makefile.in (TEMPLATE_SRC): Add Array-i.cc to the list. |
|
2111 |
|
2112 Tue Aug 22 00:41:06 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2113 |
|
2114 * DAE.cc (dassl_f): Add UNUSED attribute for unused parameters. |
|
2115 (dassl_j): Likewise. |
|
2116 |
|
2117 * DAE.cc, NLEqn.cc, NPSOL.cc, ODE.cc, CColVector.cc, CMatrix.cc, |
|
2118 dColVector.cc, dMatrix.cc, CmplxLU.cc, dbleLU.cc, QPSOL.cc, |
|
2119 Array.cc, CollocWt.cc, FEGrid.h, LinConst.h: |
|
2120 Update for change in for loop variable scope for gcc 2.7.0. |
|
2121 |
|
2122 Mon Aug 21 19:34:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
2123 |
|
2124 * Makefile.in: Only include dependency files if $(omit_deps) is |
|
2125 not set. |
|
2126 |
|
2127 Mon May 1 13:26:00 1995 John Eaton (jwe@bullwinkle.che.utexas.edu) |
|
2128 |
|
2129 * dbleSCHUR.h dbleSVD.h dbleQRP.h dbleQR.h dbleHESS.h dbleLU.h |
|
2130 dbleCHOL.h dbleGEPBAL.h dbleAEPBAL.h dbleDET.h dDiagMatrix.h |
|
2131 dColVector.h dMatrix.h dRowVector.h Quad.h Range.h QPSOL.h QLD.h |
|
2132 ODEFunc.h QP.h Objective.h NPSOL.h ODE.h NLEqn.h NLFunc.h |
|
2133 NLConst.h LinConst.h LPsolve.h LP.h FSQP.h FEGrid.h EIG.h |
|
2134 DAEFunc.h CollocWt.h DAE.h CmplxSVD.h CmplxQRP.h CmplxSCHUR.h |
|
2135 CmplxHESS.h CmplxDET.h CmplxLU.h CmplxQR.h CmplxCHOL.h |
|
2136 CmplxAEPBAL.h CRowVector.h CDiagMatrix.h Bounds.h CColVector.h |
|
2137 CMatrix.h dbleSCHUR.cc dbleSVD.cc dbleQRP.cc dbleQR.cc |
|
2138 dbleGEPBAL.cc dbleLU.cc dbleHESS.cc dbleDET.cc dbleCHOL.cc |
|
2139 dbleAEPBAL.cc dColVector.cc dRowVector.cc dMatrix.cc |
|
2140 dDiagMatrix.cc QPSOL.cc Range.cc Quad.cc QP.cc ODEFunc.cc QLD.cc |
|
2141 Objective.cc NLEqn.cc ODE.cc NPSOL.cc NLFunc.cc LPsolve.cc |
|
2142 NLConst.cc LinConst.cc FSQP.cc FEGrid.cc LP.cc DAE.cc EIG.cc |
|
2143 CollocWt.cc DAEFunc.cc CmplxSVD.cc CmplxSCHUR.cc CmplxQRP.cc |
|
2144 CmplxLU.cc CmplxQR.cc CmplxHESS.cc CmplxDET.cc CmplxCHOL.cc |
|
2145 CmplxAEPBAL.cc CRowVector.cc CColVector.cc CMatrix.cc |
|
2146 CDiagMatrix.cc Bounds.cc MArray.h MArray.cc Array.cc Array.h |
|
2147 NLP.h: Use pragma interface/implementation. Don't surround |
|
2148 contents in extern "C++". |
|
2149 * lo-error.h sun-utils.h: Don't surround contents in extern "C++". |
|
2150 |
|
2151 Tue Apr 11 10:59:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2152 |
|
2153 * f77-uscore.h (F77_FCN): Allow for possibility of uppercase |
|
2154 identifiers. |
|
2155 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
2156 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
2157 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
2158 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
2159 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
2160 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
2161 Quad.cc: Change usage of F77_FCN to match new definition |
|
2162 |
|
2163 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
2164 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
2165 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
2166 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
2167 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
2168 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
2169 Quad.cc: Where appropriate, declare Fortran subroutines to take |
|
2170 args by reference instead of pointer. Change all callers. |
|
2171 |
|
2172 Sun Apr 9 20:11:56 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2173 |
|
2174 * MArray.h (MArray2::~MArray2, MDiagArray::~MDiagArray): New |
|
2175 functions. Make += and -= operators friend functions. |
|
2176 |
|
2177 * Array.h (Array2::~Array2, Array3::~Array3, |
|
2178 DiagArray::~DiagArray): New functions. |
|
2179 |
|
2180 Wed Apr 5 21:21:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2181 |
|
2182 * Makefile.in (EXTRAS): Don't distribute mx-kludge.cc. |
|
2183 (MATRIX_INC): Don't distribute mx-kludge.h. |
|
2184 |
|
2185 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
2186 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
2187 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
2188 dRowVector.h dRowVector.cc: |
|
2189 Derive classes from MArray, MArray2, and MDiagArray, not Array, |
|
2190 Array2, and DiagArray2. |
|
2191 Don't use functions defined in mx-kludge.cc for arithmetic |
|
2192 like-type operations on arrays. |
|
2193 |
|
2194 * MArray.cc: Use the classes defined here like-type mathematical |
|
2195 operations on Array objects. Abuse CPP more. |
|
2196 * Makefile.in (TEMPLATE_SRC): Add it to the list. |
|
2197 (EXTRAS): Delete it from this list. |
|
2198 |
|
2199 * MArray-C.cc, MArray-d.cc: New files. |
|
2200 * Makefile.in (TI_SRC): Add them to the list. |
|
2201 |
|
2202 Tue Apr 4 14:13:46 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2203 |
|
2204 * mx-kludge.cc: Abuse CPP even more. |
|
2205 |
|
2206 Mon Apr 3 21:05:30 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2207 |
|
2208 * Objective.h (objective_function): Add missing const. |
|
2209 (gradient_function): Likewise. |
|
2210 |
|
2211 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
2212 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
2213 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
2214 dRowVector.h dRowVector.cc: |
|
2215 Reorganize to declare and define friends where they should be, |
|
2216 based on the use of private constructors. |
|
2217 |
|
2218 Fri Mar 31 10:09:40 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
2219 |
|
2220 * CRowVector.h (linspace): Add declaration. |
|
2221 * dRowVector.h (linspace): Likewise. |
|
2222 |
|
2223 * dMatrix.cc (Matrix::inverse, Matrix::determinant, Matrix::solve): |
|
2224 Force result of rcond + 1.0 to be stored. |
|
2225 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::determinant, |
|
2226 ComplexMatrix::solve): Likewise. |
|
2227 |
|
2228 See ChangeLog.1 in the top level directory for earlier changes. |