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