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