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