4126
|
1 2002-10-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2 |
|
3 * oct-kpse.c (octave_kpse_clear_dir_cache): Delete. |
|
4 * oct-kpse.h: Delete decl. |
|
5 * pathsearch.cc (dir_path::init): Delete unnecessary call to |
|
6 ::octave_kpse_clear_dir_cache. |
|
7 |
4123
|
8 2002-10-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
9 |
4124
|
10 * lo-sstream.h: Undef HAVE_SSTREAM if using a version of g++ |
|
11 earlier than 3.0. |
|
12 |
4123
|
13 * Makefile.in (LINK_DEPS): Include $(LIBKPATHSEA) here. |
|
14 (liboctave.$(SHLEXT)): Not here. |
|
15 |
4110
|
16 2002-10-17 Paul Kienzle <pkienzle@users.sf.net> |
|
17 |
|
18 * oct-shlib.cc (octave_w32_shlib): New class to support Windows. |
|
19 |
4108
|
20 2002-10-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
21 |
|
22 * Makefile.in (install-lib): Don't bother with versions for |
|
23 $(SHLBIN) files. |
|
24 |
4105
|
25 2002-10-16 Paul Kienzle <pkienzle@users.sf.net> |
|
26 |
|
27 * Makefile.in (LIB_DEPS): Include $(LIBS). |
|
28 |
4102
|
29 2002-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
30 |
|
31 * lo-cieee.c: Move everything but lo_ieee_init here. |
|
32 (lo_ieee_Inf_value, lo_ieee_NA_value, lo_ieee_NaN_value): |
|
33 New functions. |
|
34 |
|
35 * Makefile.in (install): No need to use cd to create links. |
|
36 (LINK_DEPS): Include $(LIBOCTAVE_LFLAGS) before list of libraries. |
|
37 |
|
38 2002-10-14 Paul Kienzle <pkienzle@users.sf.net> |
|
39 |
|
40 * Makefile.in: Merge liboctave with liboct-readline and |
|
41 liboct-pathsearch. |
|
42 Use link dependencies for shared libs if INCLUDE_LINK_DEPS. |
|
43 (libraries): Depend on versioned library. |
|
44 (liboctave.$(SHLEXT), liboctave.$(SHLEXT_VER)): Reverse actions -- |
|
45 build unversioned library, symbolic link adds version info. |
|
46 (install, uninstall): Handle link and load forms of the library |
|
47 separately. |
|
48 |
4101
|
49 2002-10-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
50 |
|
51 * oct-time.cc: Use OCTAVE_USE_WINDOWS_API instead of __WIN32__ and |
|
52 __CYGWIN__. |
|
53 |
|
54 * file-ops.cc (file_ops::dir_sep_char, file_ops::dir_sep_str, |
|
55 file_ops::dir_sep_chars): New static functions to replace |
|
56 OCTAVE_DIR_SEP_CHAR, OCTAVE_DIR_SEP_STR, OCTAVE_DIR_SEP_CHARS. |
|
57 |
|
58 * oct-env.cc (octave_env::do_set_program_name): |
|
59 Use file_ops::dir_sep_chars instead of OCTAVE_DIR_SEP_CHARS. |
|
60 (octave_env::do_base_pathname): Likewise. |
|
61 (octave_env::do_make_absolute): Likewise. |
|
62 |
|
63 * oct-env.cc (octave_env::do_make_absolute): |
|
64 Use file_ops::dir_sep_str instead of OCTAVE_DIR_SEP_STR. |
|
65 (octave_env::do_get_home_directory): Likewise. |
|
66 |
|
67 * file-ops.cc (is_dir_sep): Use dir_sep_chars instead of embedding |
|
68 that information here too. |
|
69 (tilde_find_suffix, isolate_tilde_prefix, tilde_expand_word): |
|
70 Use file_ops::dir_sep_char instead of OCTAVE_DIR_SEP_CHAR. |
|
71 |
|
72 * file-ops.h: Use OCTAVE_HAVE_WINDOWS_FILESYSTEM and |
|
73 OCTAVE_HAVE_POSIX_FILESYSTEM instead of __WIN32__ and __CYGWIN__. |
|
74 |
4097
|
75 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
76 |
|
77 * oct-env.h (octave_env::current_directory): Now mutable. |
|
78 (octave_env:do_getcwd): Now const. |
|
79 |
|
80 * file-ops.h, file-ops.cc (file_ops::is_dir_sep): New function. |
|
81 (OCTAVE_DIR_SEP_CHAR, OCTAVE_DIR_SEP_STR, OCTAVE_DIR_SEP_CHARS, |
|
82 OCTAVE_CURRENT_DIR_STR): New macros. |
|
83 * oct-env.cc (is_dir_sep): Delete. |
|
84 (octave_env::do_base_pathname): Look for OCTAVE_DIR_SEP_CHARS, not '/'. |
|
85 (octave_env::do_set_program_name): Likewise. |
|
86 (octave_env::do_polite_directory_format): Use file_ops::is_dir_sep |
|
87 instead of checking for '/'. |
|
88 (octave_env::pathname_backup): Likewise. |
|
89 (octave_env::do_absolute_pathname): Likewise. |
|
90 (octave_env::do_make_absolute): Likewise. |
|
91 If dot_path is empty, use getcwd to set current_dir. |
|
92 (octave_env::do_get_home_directory): Use OCTAVE_DIR_SEP_STR |
|
93 instead of "/". |
|
94 |
4093
|
95 2002-10-07 Paul Kienzle <pkienzle@users.sf.net> |
|
96 |
|
97 * lo-cutils.c: On non-Posix Windows systems, include winsock.h. |
|
98 |
|
99 2002-10-07 Paul Kienzle <pkienzle@users.sf.net> |
|
100 |
|
101 * oct-env.cc (octave_env::do_absolute_pathname): Recognize |
|
102 absolute path names under MinGW as well. |
|
103 |
|
104 2002-10-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
105 |
|
106 * oct-env.cc: Include <cctype> too. |
|
107 |
4087
|
108 2002-10-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
109 |
|
110 * oct-env.cc (octave_env::do_absolute_pathname): Handle Windows |
|
111 filenames. |
|
112 (octave_env::do_make_absolute): Check for absolute name with |
|
113 do_absolute_path. |
4088
|
114 (octave_env::do_chdir): Likewise. |
|
115 (is_dir_sep): New function. |
4087
|
116 |
4085
|
117 2002-10-03 Paul Kienzle <pkienzle@users.sf.net> |
|
118 |
4086
|
119 * oct-time.cc (octave_time::stamp): Better resolution for Windows |
|
120 systems. |
4085
|
121 |
4083
|
122 2002-10-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
123 |
|
124 * dMatrix.cc (Matrix::read): Clean up error handling logic. |
|
125 |
4080
|
126 2002-09-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
127 |
4081
|
128 * file-ops.cc (file_ops::mkdir): Handle one-arg mkdir here. |
|
129 |
4080
|
130 * lo-specfun.cc (acosh): Call xdacosh, not dacosh. |
|
131 |
4076
|
132 2002-09-27 Per Persson <persquare@mac.com> |
|
133 |
|
134 * oct-group.cc (octave_group::octave_group): Dont' forget to set |
|
135 gr_gid too. |
|
136 |
4072
|
137 2002-09-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
138 |
4074
|
139 * lo-mappers.cc (xisnan, xfinite, xisinf): Simply forward to |
|
140 lo_ieee_* functions. |
4072
|
141 * Makefile.in (LIBOCTAVE_C_SOURCES): Add lo-cieee.c to the list. |
4074
|
142 * lo-ieee.cc (lo_ieee_double): Rename from ieee_double. |
|
143 (LO_IEEE_NA_HW, LO_IEEE_NA_LW): Rename from NA_HW and NA_LW. |
4072
|
144 * lo-cieee.c: New file. |
4074
|
145 [SCO] (isinf, isnan): Move here from lo-ieee.cc. |
4072
|
146 * lo-ieee.h: Now all extern "C". |
4074
|
147 (lo_ieee_isnan, lo_ieee_finite, lo_ieee_isinf): Move here from |
|
148 lo-mappers.cc and rename from xisnan, xfinite, xisinf. |
|
149 |
4072
|
150 * lo-ieee.cc (lo_ieee_hw, lo_ieee_low): Rename from hw and lw. |
|
151 Now extern. |
|
152 |
4066
|
153 2002-09-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
154 |
|
155 * Array.cc, Array.h, Array2.cc, Array2.h, Array3.cc, Array3.h, |
|
156 ArrayN.cc, ArrayN.h, Bounds.cc, Bounds.h, CColVector.cc, |
|
157 CColVector.h, CDiagMatrix.cc, CDiagMatrix.h, CMatrix.cc, |
|
158 CMatrix.h, CRowVector.cc, CRowVector.h, CmplxAEPBAL.cc, |
|
159 CmplxAEPBAL.h, CmplxCHOL.cc, CmplxCHOL.h, CmplxDET.cc, CmplxDET.h, |
|
160 CmplxHESS.cc, CmplxHESS.h, CmplxLU.cc, CmplxLU.h, CmplxQR.cc, |
|
161 CmplxQR.h, CmplxQRP.cc, CmplxQRP.h, CmplxSCHUR.cc, CmplxSCHUR.h, |
|
162 CmplxSVD.cc, CmplxSVD.h, CollocWt.cc, CollocWt.h, DAE.cc, |
|
163 DASPK.cc, DASPK.h, DASRT.cc, DASRT.h, DASSL.cc, DASSL.h, |
|
164 DiagArray2.cc, DiagArray2.h, EIG.cc, EIG.h, FEGrid.cc, FEGrid.h, |
|
165 LPsolve.cc, LPsolve.h, LSODE.cc, LSODE.h, LinConst.cc, LinConst.h, |
|
166 MArray.cc, MArray.h, MArray2.cc, MArray2.h, MDiagArray2.cc, |
|
167 MDiagArray2.h, NLConst.h, NLEqn.cc, NLEqn.h, ODES.cc, ODES.h, |
|
168 ODESSA.cc, ODESSA.h, Quad.cc, Quad.h, Range.cc, Range.h, |
|
169 base-lu.cc, base-lu.h, boolMatrix.cc, boolMatrix.h, chMatrix.cc, |
|
170 chMatrix.h, dColVector.cc, dColVector.h, dDiagMatrix.cc, |
|
171 dDiagMatrix.h, dMatrix.cc, dMatrix.h, dRowVector.cc, dRowVector.h, |
|
172 dbleAEPBAL.cc, dbleAEPBAL.h, dbleCHOL.cc, dbleCHOL.h, dbleDET.cc, |
|
173 dbleDET.h, dbleHESS.cc, dbleHESS.h, dbleLU.cc, dbleLU.h, |
|
174 dbleQR.cc, dbleQR.h, dbleQRP.cc, dbleQRP.h, dbleSCHUR.cc, |
|
175 dbleSCHUR.h, dbleSVD.cc, dbleSVD.h, idx-vector.cc, idx-vector.h, |
|
176 oct-alloc.cc: |
|
177 If __GNUG__, use pragma interface/implementation. Allow this to |
|
178 be turned off by defining NO_PRAGMA_INTERFACE_IMPLEMENTATION. |
|
179 |
4064
|
180 2002-09-26 Paul Kienzle <pkienzle@users.sf.net> |
|
181 |
4066
|
182 * file-ops.cc (file_ops::readlink): Don't declare buffer if |
|
183 system readlink function is not available. |
|
184 |
4065
|
185 * lo-mappers.cc (xerf, xerfc): Delete. |
|
186 * lo-mappers.h (xerf, xerfc): Delete decls. |
|
187 |
4064
|
188 * lo-mappers.cc: Remove unused #define M_PI. |
|
189 * lo-specfun.cc: Add #define M_PI if needed. |
|
190 |
4062
|
191 2002-09-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
192 |
|
193 * cmd-edit.cc (do_decode_prompt_string): Cope with possibility |
|
194 that geteuid doesn't exist. |
|
195 |
|
196 * LP.h: Rename LP class to octave_LP. |
|
197 LPsolve.h: Change all uses. |
|
198 |
|
199 * file-ops.cc, oct-passwd.cc oct-syscalls.cc oct-group.cc: Remove |
|
200 incorrect token-pasting op. |
|
201 |
|
202 * statdefs.h [! S_ISLNK]: undef HAVE_LSTAT instead of trying to |
|
203 define lstat. |
|
204 |
4061
|
205 2002-09-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
206 |
|
207 * Array.cc, Array.h, Array2.cc, Array2.h, Array3.cc, Array3.h, |
|
208 ArrayN.cc, ArrayN.h, Bounds.cc, Bounds.h, CColVector.cc, |
|
209 CColVector.h, CDiagMatrix.cc, CDiagMatrix.h, CMatrix.cc, |
|
210 CMatrix.h, CRowVector.cc, CRowVector.h, CmplxAEPBAL.cc, |
|
211 CmplxAEPBAL.h, CmplxCHOL.cc, CmplxCHOL.h, CmplxDET.cc, CmplxDET.h, |
|
212 CmplxHESS.cc, CmplxHESS.h, CmplxLU.cc, CmplxLU.h, CmplxQR.cc, |
|
213 CmplxQR.h, CmplxQRP.cc, CmplxQRP.h, CmplxSCHUR.cc, CmplxSCHUR.h, |
|
214 CmplxSVD.cc, CmplxSVD.h, CollocWt.cc, CollocWt.h, DAE.cc, |
|
215 DASPK.cc, DASPK.h, DASRT.cc, DASRT.h, DASSL.cc, DASSL.h, |
|
216 DiagArray2.cc, DiagArray2.h, EIG.cc, EIG.h, FEGrid.cc, FEGrid.h, |
|
217 LPsolve.cc, LPsolve.h, LSODE.cc, LSODE.h, LinConst.cc, LinConst.h, |
|
218 MArray.cc, MArray.h, MArray2.cc, MArray2.h, MDiagArray2.cc, |
|
219 MDiagArray2.h, NLConst.h, NLEqn.cc, NLEqn.h, ODES.cc, ODES.h, |
|
220 ODESSA.cc, ODESSA.h, Quad.cc, Quad.h, Range.cc, Range.h, |
|
221 base-lu.cc, base-lu.h, boolMatrix.cc, boolMatrix.h, chMatrix.cc, |
|
222 chMatrix.h, dColVector.cc, dColVector.h, dDiagMatrix.cc, |
|
223 dDiagMatrix.h, dMatrix.cc, dMatrix.h, dRowVector.cc, dRowVector.h, |
|
224 dbleAEPBAL.cc, dbleAEPBAL.h, dbleCHOL.cc, dbleCHOL.h, dbleDET.cc, |
|
225 dbleDET.h, dbleHESS.cc, dbleHESS.h, dbleLU.cc, dbleLU.h, |
|
226 dbleQR.cc, dbleQR.h, dbleQRP.cc, dbleQRP.h, dbleSCHUR.cc, |
|
227 dbleSCHUR.h, dbleSVD.cc, dbleSVD.h, idx-vector.cc, idx-vector.h, |
|
228 oct-alloc.cc: |
|
229 Use USE_PRAGMA_INTERFACE_IMPLEMENTATION instead of __GNUG__ |
|
230 to decide whether to use the interface/implementation pragmas. |
|
231 |
4058
|
232 2002-09-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
233 |
|
234 * Makefile.in (INCLUDES): Add lo-sstream.h to the list. |
|
235 |
4055
|
236 2002-08-17 Mumit Khan <khan@nanotech.wisc.edu> |
|
237 |
|
238 * CmplxCHOL.h, CollocWt.h, cmd-edit.h, oct-shlib.h: Don't use |
|
239 qualified names. |
|
240 |
4051
|
241 2002-08-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
242 |
4054
|
243 * Array.h, Array2-idx.h, DiagArray2.cc, Array2.cc, Array3.cc, |
|
244 ArrayN.cc: Add typename where needed. |
4053
|
245 |
4051
|
246 * DASPK.cc: Include lo-sstream.h and use macros instead of using |
|
247 strstream classes directly. |
|
248 * DASRT.cc: Likewise. |
|
249 * DASSL.cc: Likewise. |
|
250 * LSODE.cc: Likewise. |
|
251 * ODESSA.cc: Likewise. |
|
252 |
|
253 * cmd-hist.cc: Don't include <strstream>. |
|
254 * oct-shlib.cc: Likewise. |
|
255 |
|
256 * lo-sstream.h: New file. |
|
257 |
4049
|
258 2002-08-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
259 |
|
260 * LSODE.h (rel_tol, abs_tol, px, pabs_tol, piwork, prwork, itol): |
|
261 New data members. |
|
262 (LSODE::sanity_checked): Delete unused data member. |
|
263 |
|
264 * DASPKL.h (initialized, abs_tol, rel_tol, px, pxdot, pabs_tol, |
|
265 prel_tol, pinfo, piwork, prwork): New data members. |
|
266 * DASSL.h (DASSL): Likewise. |
|
267 |
|
268 * DASRT.h (DASRT::sanity_checked): Delete unused data member. |
|
269 |
|
270 * DASRT.cc (DASRT::integrate (double)): Better handling of |
|
271 initialization, changes in options, etc. |
|
272 * DASPK.cc (DASPK::do_integrate): Likewise. |
|
273 * DASSL.cc (DASSL::do_integrate): Likewise. |
|
274 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
275 |
4047
|
276 2002-08-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
277 |
4049
|
278 * DAEFunc.h (DAEFunc::reset): New data member. |
|
279 * DAERTFunc.h (DAERTFunc::reset): Likewise. |
|
280 |
|
281 * base-de.h (base_diff_eqn::set_stop_time): Force restart here. |
|
282 (base_diff_eqn::clear_stop_time): Likewise. |
|
283 |
4047
|
284 * DASSL.cc (DASSL::do_integrate (double)): Handle more optoins. |
|
285 * DASPK.cc (DASPK::do_integrate (double)): Likewise. |
|
286 |
4044
|
287 2002-08-15 Paul Kienzle <pkienzle@users.sf.net> |
|
288 |
|
289 * DASPK-opts.in, DASPK.h: Move include to .in file. |
|
290 * DASRT-opts.in, DASRT.h: Likewise. |
|
291 * DASSL-opts.in, DASSL.h: Likewise. |
|
292 * LSODE-opts.in, LSODE.h: Likewise. |
|
293 * NLEqn-opts.in, NLEqn.h: Likewise. |
|
294 * ODESSA-opts.in, ODESSA.h: Likewise. |
|
295 |
4038
|
296 2002-08-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
297 |
4042
|
298 * LSODE.cc (LSODE::error_message): Also return current T on |
|
299 failures when that makes sense. |
4043
|
300 * DASSL.cc (DASSL::error_message): Likewise. |
|
301 * DASRT.cc (DASRT::error_message): Likewise. |
|
302 * DASPK.cc (DASPK::error_message): Likewise. |
|
303 * ODESSA.cc (ODESSA:error_message): Likewise. |
4042
|
304 |
4038
|
305 * Makefile.in (liboct-pathsearch.$(SHLEXT_VER)): Link to |
|
306 $(LIBKPATHSEA) here. |
|
307 |
4025
|
308 2002-08-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
309 |
|
310 * lo-ieee.cc (lo_ieee_is_NA): New function. |
|
311 (lo_ieee_is_NaN_or_NA): New function. |
|
312 (octave_NA): New global value. |
|
313 (octave_ieee_init): Initialize it. |
|
314 * lo-mappers.cc (octave_is_NA): New function. |
|
315 (octave_is_NaN_or_NA): New function. |
|
316 (xisnan): Return false if NaN looks like a missing value. |
|
317 (xisnan (const Complex&)): Use xisnan here. |
|
318 |
4015
|
319 2002-08-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
320 |
4017
|
321 * CMatrix.h (ComplexMatrix::all, ComplexMatrix::any, |
|
322 ComplexMatrix::cumprod, ComplexMatrix::cumsum, |
|
323 ComplexMatrix::prod, ComplexMatrix::sum, ComplexMatrix::sumsq): |
|
324 Default value for dim is -1, not 0. |
|
325 * dMatrix.h (Matrix::all, Matrix::any, Matrix::cumprod, |
|
326 Matrix::cumsum, Matrix::prod, Matrix::sum, Matrix::sumsq): Likewise. |
|
327 * boolMatrix.h (boolMatrix:all, boolMatrix::any): Likewise. |
|
328 * chMatrix.h (charMatrix::all, charMatrix::any): Likewise. |
|
329 |
4015
|
330 * mx-inlines.cc (MX_ANY_ALL_OP_ROW_CODE, MX_ANY_ALL_OP_COL_CODE): |
|
331 New macros. |
|
332 (MX_ANY_ALL_OP): Define MX_ANY_ALL_OP using them and |
|
333 MX_BASE_REDUCTION_OP. |
|
334 (MX_CUMULATIVE_OP): Fix spelling. Change all uses. |
|
335 |
4014
|
336 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
337 |
4015
|
338 * chMatrix.h, chMatrix.cc (charMatrix::any, charMatrix::all): |
|
339 Return boolMatrix, not Matrix. |
|
340 |
|
341 * mx-inlines.cc (MX_ANY_ALL_OP, MX_ALL_OP, MX_ANY_OP): New macros. |
|
342 * dMatrix.cc (Matrix::any): Replace guts with MX_ANY_OP. |
|
343 (Matrix::all): Replace guts with MX_ALL_OP. |
|
344 * CMatrix.cc (ComplexMatrix::any): Replace guts with MX_ANY_OP. |
|
345 (ComplexMatrix::all): Replace guts with MX_ALL_OP. |
|
346 * boolMatrix.cc (boolMatrix::any): Replace guts with MX_ANY_OP. |
|
347 (boolMatrix::all): Replace guts with MX_ALL_OP. |
|
348 * chMatrix.cc (charMatrix::any): Replace guts with MX_ANY_OP. |
|
349 (charMatrix::all): Replace guts with MX_ALL_OP. |
|
350 |
|
351 * dMatrix.h (Matrix::any): New arg, dim. |
|
352 (Matrix::all): Likewise. |
|
353 * CMatrix.h (ComplexMatrix::any): Likewise. |
|
354 (ComplexMatrix::all): Likewise. |
|
355 * boolMatrix.h (boolMatrix::any): Likewise. |
|
356 (boolMatrix::all): Likewise. |
|
357 * chMatrix.h (charMatrix::any): Likewise. |
|
358 (charMatrix::all): Likewise. |
|
359 |
4014
|
360 * Makefile.in: Use $@-t instead of $@.t. |
|
361 |
4004
|
362 2002-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
363 |
|
364 * lo-specfun.cc (gammainc): New arg, err, for scalar version. |
|
365 Use it in matrix versions to avoid spewing multiple errors. |
|
366 Call xgammainc instead of dgamit. |
|
367 |
3998
|
368 2002-07-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
369 |
|
370 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const boolMatrix&)): |
|
371 Get rows and columns right in loop. |
|
372 (ComplexMatrix::ComplexMatrix (const charMatrix&)): Likewise. |
|
373 |
|
374 2002-07-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
375 |
|
376 * DASPK.cc (DASPK::do_integrate): Allow array tolerances. |
|
377 * DASRT.cc (DASRT::integrate): Likewise. |
|
378 * DASSL.cc (DASSL::do_integrate): Likewise. |
|
379 |
|
380 * Quad.cc: Don't pass tolerances in constructors. |
|
381 |
|
382 * DASPK-opts.in, DASRT-opts.in, DASSL-opts.in, LSODE-opts.in, |
|
383 NLeqn-opts.in, ODESSA-opts.in, Quad-opts.in: New files. |
|
384 * DASPK-opts.h, DASRT-opts.h, DASSL-opts.h, LSODE-opts.h, |
|
385 NLeqn-opts.h, ODESSA-opts.h, Quad-opts.h: Generate automatically |
|
386 from corresponding .in files. |
|
387 * LSODE.h, Quad.h: Replace options class definitions with included |
|
388 file. |
|
389 * Makefile.in (OPTS_INC_SRC, OPTS_INC): New variables, new rule to |
|
390 create OPTS_INC files from OPTS_INC_SRC files. |
|
391 (stamp-prereq): New target. |
|
392 (libraries): Depend on stamp-prereq. |
|
393 Include stamp-prereq along with $(MAKEDEPS). |
|
394 |
3997
|
395 2002-07-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
396 |
|
397 * base-de.h (base_diff_eqn::istate): New data member. |
|
398 (base_diff_eqn::integration_state): New member function. |
|
399 * LSODE.h, LSODE.cc, ODESSA.h, ODESSA.cc: Delete corresponding |
|
400 data members and functions. |
|
401 * DASPK.h, DASRT.h, DASSL.h: Delete idid data member. |
|
402 * DASPK.cc, DASRT.cc, DASSL.cc: Use istate instead of idid. |
|
403 |
3990
|
404 2002-07-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
405 |
3995
|
406 * base-de.h (base_diff_eqn::stop_time, |
|
407 base_diff_eqn::stop_time_set, base_diff_eqn::restart, |
|
408 base_diff_eqn::integration_error): New data members. |
|
409 (base_diff_eqn::set_stop_time, base_diff_eqn::clear_stop_time, |
|
410 base_diff_eqn::force_restart, base_diff_eqn::integration_ok, |
|
411 base_diff_eqn::error_message): New member functions. |
|
412 * LSODE.h, LSODE.cc, DASSL.h, DASSL.cc, DASPK.h, DASPK.cc, |
|
413 DASRT.h, DASRT.cc, ODESSA.h, ODESSA.cc: Delete corresponding data |
|
414 members and functions. |
|
415 |
3992
|
416 * DASRT.h (DASRT::set_ng, DASRT::get_ng): Delete |
|
417 * DASRT.cc (DASRT::DASRT): Set ng here. |
3993
|
418 (DASRT::integrate): Don't forget to set nn. |
3992
|
419 |
3991
|
420 * DAEFunc.h (DAEFunc): Jacobian function now follows format of DASSL. |
|
421 * DASSL.cc (ddassl_j): Make it work. |
|
422 * DASPK.cc (ddaspk_j): Likewise. |
|
423 |
3990
|
424 * DAE.cc: Delete. |
|
425 |
|
426 * DAERT.h, DAERTFunc.h, DASRT.h, DASRT.cc: New files for DAE |
|
427 solving with root finding. |
|
428 * Makefile.in: Add them to the appropriate lists. |
|
429 |
|
430 * base-dae.h: New file. |
|
431 * Makefile.in (INCLUDES): Add it to the list. |
|
432 * DAE.h (DAE): Derive from base_diff_alg_eqn, not base_diff_eqn. |
|
433 |
3984
|
434 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
435 |
|
436 * ODE.h: Move integrate and do_integrate method declarations and |
|
437 definitions here. |
|
438 * base-de.h: From here. |
|
439 |
|
440 * ODES.h, ODES.cc, ODESFunc.h, ODESSA.h, ODESSA.cc: New files. |
|
441 * Makefile.in: Add them to the appropriate lists. |
|
442 (LIBOCTAVE_CXX_SOURCES): |
|
443 |
3971
|
444 2002-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
445 |
|
446 * NLEqn.cc (NLEqn::error_message): New function. |
|
447 * NLEqn.h (NLEqn::solution_state, NLEqn::solution_ok): New functions. |
|
448 |
3970
|
449 2002-07-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
450 |
|
451 * lo-utils.cc (octave_fgetl): New function. |
|
452 * cmd-edit.cc (do_readline): Use it instead of octave_fgets. |
|
453 |
3959
|
454 2002-05-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
455 |
|
456 * LSODE.cc (LSODE::error_message): New function. |
|
457 * LSODE.h: Provide decl. |
|
458 (LSODE::integration_state): New function. |
|
459 (LSODE::integration_ok): New function. |
|
460 |
3952
|
461 2002-05-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
462 |
3955
|
463 * LSODE.cc (LSODE_options::x_integration_method): New data member. |
|
464 (LSODE_options::set_integration_method, |
|
465 LSODE_options::integration_method): New functions. |
3954
|
466 |
3952
|
467 * LSODE.h (LSODE_options::x_absolute_tolerance): Now Array<double>. |
|
468 Change all uses. |
|
469 (LSODE_OPTIONS::absolute_tolerance): Return Array<double>, not double. |
|
470 (LSODE_OPTIONS::set_absolute_tolerance (const Array<double>&)): |
|
471 New function. |
|
472 |
|
473 * Array.h (Array::fortran_vec): New const version. |
|
474 |
3951
|
475 2002-05-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
476 |
|
477 * cmd-edit.cc (gnu_readline::history_search_backward): New function. |
|
478 (gnu_readline::history_search_forward): Likewise. |
|
479 (gnu_readline::gnu_readline): Use them instead of passing pointers |
|
480 to extern "C" functions to octave_rl_ad_defun. |
|
481 |
3946
|
482 2002-05-22 Mumit Khan <khan@nanotech.wisc.edu> |
|
483 |
|
484 * DASPK.cc (ddaspk_psol): Return value. |
|
485 * oct-rl-edit.c: Use /* ... */ to comment. |
|
486 |
3945
|
487 2002-05-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
488 |
|
489 * DASSL.h (DASSL_options::init): Undo previous change. |
|
490 (DASSL_options::set_absolute_tolerance): Likewise. |
|
491 * LSODE.h (LSODE_options::init): Likewise. |
|
492 (LSODE_options::set_absolute_tolerance): Likewise. |
|
493 |
|
494 * DASPK.h (DASPK_options::init): Use default absolute tolerance of |
|
495 sqrt(eps), not eps^2. |
|
496 DASPK_options::set_absolute_tolerance): Likewise. |
|
497 |
3944
|
498 2002-05-17 Mumit Khan <khan@nanotech.wisc.edu> |
|
499 |
|
500 * Array.h (Array<T>::resize_fill_value): Return default initialized |
|
501 object. |
|
502 |
3933
|
503 2002-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
504 |
|
505 * oct-rl-edit.c (OCTAVE_RL_SAVE_STRING): New macro. |
|
506 (octave_rl_set_name, octave_rl_set_basic_quote_characters): Use it. |
|
507 (octave_rl_set_basic_word_break_characters, |
|
508 octave_rl_set_completer_word_break_characters): New functions. |
|
509 * oct-rl-edit.h: Provide decls. |
|
510 * cmd-edit.cc (gnu_readline::do_set_basic_word_break_characters, |
|
511 gnu_readline::do_set_completer_word_break_characters): New functions. |
|
512 (command_editor::set_basic_quote_characters, |
|
513 command_editor::set_completion_append_character): New static functions. |
|
514 * cmd-edit.h: Provide decls. |
|
515 (command_editor::do_set_basic_word_break_characters, |
|
516 command_editor::do_set_completer_word_break_characters): |
|
517 New virtual functions. |
|
518 |
|
519 * CMatrix.h, boolMatrix.h, chMatrix.h, dMatrix.h |
|
520 (resize_fill_value): New static function. |
|
521 |
|
522 * Array-idx.h (Array<T>::index): New args, resize_ok and |
|
523 resize_fill_value. |
|
524 * Array2-idx.h (Array2<T>::index): Likewise. |
|
525 * ArrayN-idx.h (ArrayN<T>::index): Likewise. |
|
526 |
|
527 * Array2.cc (Array<T>::print_info): New function. |
|
528 * Array2.h: Provide decl. |
|
529 |
|
530 * Array.cc (Array<T>::print_info): New function. |
|
531 * Array.h: Provide decl. |
|
532 |
3928
|
533 2002-05-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
534 |
|
535 * idx-vector.h (idx_vector::idx_vector (int)): New function. |
|
536 (idx_vector_rep::idx_vector_rep (int)): New decl. |
|
537 * idx-vector.cc (idx_vector_rep::idx_vector_rep (int)): New function. |
|
538 |
|
539 * Array.h (Array<T>::resize_fill_value (void)): New static function. |
|
540 (assign (Array<LT>&, const Array<RT>&)): Use it. |
|
541 * Array2.h (assign (Array2<LT>&, const Array2<RT>&)): Use it. |
|
542 * ArrayN.h (assign (ArrayN<LT>&, const ArrayN<RT>&)): Use it. |
|
543 |
|
544 2002-05-02 Cai Jianming <caijianming@yahoo.co.uk> |
|
545 |
|
546 * Array3.h (Array3<T>::checkelem): Improve error message. |
|
547 * ArrayN.h (ArrayN<T>::range_error): Likewise. |
|
548 * DiagArray2.cc (DiagArray2<T>::checkelem): Likewise. |
|
549 * DiagArray2.cc (DiagArray2<T>::operator ()): Likewise. |
|
550 |
3919
|
551 2002-04-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
552 |
|
553 * DASSL.h (DASSL_options::init): Undo previous change. |
|
554 (DASSL_options::set_absolute_tolerance): Likewise. |
|
555 |
3912
|
556 2002-04-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
557 |
|
558 * DASPK.h, DASPK.cc: New files. |
|
559 * Makefile.in: Add them to the appropriate lists. |
|
560 |
3904
|
561 2002-04-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
562 |
|
563 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&) const): |
|
564 Simplify indexing when one or both of the indices are empty. |
|
565 |
3896
|
566 2002-04-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
567 |
|
568 * DASSL.h (DASSL_options::init): Set absolute tolerance to eps ^ 2. |
|
569 (DASSL_options::set_absolute_tolerance): Likewise. |
|
570 * LSODE.h (LSODE_options::init): Likewise. |
|
571 (LSODE_options::set_absolute_tolerance): Likewise. |
|
572 |
3887
|
573 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
|
574 |
|
575 * f2c-main.c (MAIN_, MAIN__): Delete. Use F77_DUMMY_MAIN instead. |
|
576 * file-stat.cc (file_stat::update_internal, file_stat::copy): |
|
577 Use HAVE_STRUCT_STAT_ST_RDEV instead of HAVE_ST_RDEV. |
|
578 Use HAVE_STRUCT_STAT_ST_BLKSIZE instead of HAVE_ST_BLKSIZE. |
|
579 Use HAVE_STRUCT_STAT_ST_BLOCKS instead of HAVE_ST_BLOCKS. |
|
580 * file-stat.h: Likewise. |
|
581 * oct-time.cc (octave_time::octave_time, octave_base_tm::strftime, |
|
582 octave_base_tm::init, octave_strptime::init): Use HAVE_TM_ZONE |
|
583 instead of HAVE_STRUCT_TM_TM_ZONE. |
|
584 * strftime.c: Likewise. |
|
585 * lo-specfun.cc, mach-info.cc, CColVector.cc, CMatrix.cc, |
|
586 CRowVector.cc, CmplxAEPBAL.cc, CmplxCHOL.cc, CmplxHESS.cc, |
|
587 CmplxLU.cc, CmplxQR.cc, CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, |
|
588 CollocWt.cc, DASSL.cc, EIG.cc, LSODE.cc, NLEqn.cc, Quad.cc, |
|
589 dColVector.cc, dMatrix.cc, dRowVector.cc, dbleAEPBAL.cc, |
|
590 dbleCHOL.cc, dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, |
|
591 dbleSCHUR.cc, dbleSVD.cc: Use F77_FUNC instead of F77_FCN. |
|
592 |
3883
|
593 2002-04-02 Paul Kienzle <pkienzle@users.sf.net> |
|
594 |
|
595 * CmplxQR.cc (ComplexQR::init): Use economy QR decomposition |
|
596 internally when the user requests it. |
|
597 * CmplxQRP.cc (ComplexQRP::init): Ditto. |
|
598 * dbleQR.cc (QR::init): Ditto. |
|
599 * dbleQRP.cc (QRP::init): Ditto. |
|
600 |
3874
|
601 2002-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
602 |
|
603 * oct-fftw.cc (octave_fftw::fft2d): Avoid having to find a |
|
604 definition for NULL by passing 0 as the last arg to fftwnd_one. |
|
605 (octave_fftw::ifft2d): Likewise. |
|
606 |
3873
|
607 2002-02-22 Paul Kienzle <pkienzle@jazz.ncnr.nist.gov> |
|
608 |
|
609 * lo-mappers.cc (arg): Simply call atan2 (0.0, x). |
|
610 |
3867
|
611 2001-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
612 |
|
613 * data-conv.cc (LS_DO_READ): Don't do anything unless len > 0. |
|
614 (LS_DO_WRITE): Likewise. |
|
615 |
3864
|
616 2001-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
617 |
|
618 * mx-inlines.cc (MX_CUMMULATIVE_OP): New macro. |
|
619 * CMatrix.cc (ComplexMatrix::cumprod, ComplexMatrix::cumsum): Use it. |
|
620 * dMatrix.cc (Matrix::cumprod, Matrix::cumsum): Likewise. |
|
621 |
|
622 * mx-inlines.cc (MX_REDUCTION_OP, MX_REDUCTION_OP_COL_EXPR, |
|
623 MX_REDUCTION_OP_ROW_EXPR): New macros. |
|
624 * dMatrix.cc (Matrix::prod, Matrix::sum): Use MX_REDUCTION_OP. |
|
625 * CMatrix.cc (ComplexMatrix::prod, ComplexMatrix::sum): Likewise. |
|
626 |
|
627 * mx-inlines.cc (MX_BASE_REDUCTION_OP): New macro. |
|
628 DIM == -1 now means no orientation for vector sums. |
|
629 * dMatrix.cc (ComplexMatrix::sumsq): Use it. |
|
630 * CMatrix.cc (ComplexMatrix::sumsq): Likewise. |
|
631 |
3858
|
632 2001-11-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
633 |
|
634 * Range.cc (Range::nelem_internal): Special case ranges that must |
|
635 have zero elements. |
|
636 |
3854
|
637 2001-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
638 |
3857
|
639 * Makefile.in: Split out readline and pathsearch functionality |
|
640 into separate liboct-readline and liboct-pathsearch libraries. |
|
641 |
3854
|
642 * oct-rl-edit.c (octave_rl_clear_screen): Call rl_clear_screen, |
3857
|
643 not _rl_clear_screen. Temporarily redefine rl_redisplay_function |
|
644 to do nothing for this call to rl_clear_screen. |
3854
|
645 |
3849
|
646 2001-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
647 |
|
648 * DASSL.cc (ddassl_f): Handle IRES returned from user supplied |
|
649 function. |
|
650 * DAEFunc.h (DAERHSFunc): Add IRES to prototype. |
|
651 |
3838
|
652 2001-06-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
653 |
|
654 * dMatrix.cc (Matrix::inverse, Matrix::solve, Matrix::determinant, |
|
655 Matrix::inverse): Handle the case of rcond being a NaN the same as |
|
656 a signular matrix. From "Jianming" <caijianming@yahoo.co.uk>. |
|
657 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::solve, |
|
658 ComplexMatrix::determinant, ComplexMatrix::inverse): Likewise. |
|
659 |
3836
|
660 2001-05-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
661 |
|
662 * chMatrix.cc (charMatrix::row_as_string): New parameter, raw. |
|
663 |
|
664 * Array-i.cc, Array-s.cc, Array-d.cc, Array-ch.cc, Array-C.cc, |
|
665 Array-b.cc: Instantiate three arg assign functions. |
|
666 |
|
667 * ArrayN.cc (assign (ArrayN<LT>&, const ArrayN<RT>&, const LT&)): |
|
668 New arg, resize_fill_value. |
|
669 * ArrayN.h: Provide declaration. |
|
670 (assign (ArrayN<LT>&, const ArrayN<RT>&): Define here by calling |
|
671 three arg version. |
|
672 |
|
673 * Array3.cc (assign (Array3<LT>&, const Array3<RT>&, const LT&)): |
|
674 New arg, resize_fill_value. |
|
675 * Array3.h: Provide declaration. |
|
676 (assign (Array3<LT>&, const Array3<RT>&): Define here by calling |
|
677 three arg version. |
|
678 |
|
679 * Array2.cc (assign (Array2<LT>&, const Array2<RT>&, const LT&)): |
|
680 New arg, resize_fill_value. |
|
681 * Array2.h: Provide declaration. |
|
682 (assign (Array2<LT>&, const Array2<RT>&): Define here by calling |
|
683 three arg version. |
|
684 |
|
685 * Array.cc (assign (Array<LT>&, const Array<RT>&, const LT&)): |
|
686 New arg, resize_fill_value. |
|
687 * Array.h: Provide declaration. |
|
688 (assign (Array<LT>&, const Array<RT>&): Define here by calling |
|
689 three arg version. |
|
690 |
3833
|
691 2001-05-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
692 |
|
693 * pathsearch.cc (dir_path::set_program_name): Set the environment |
|
694 variables SELFAUTOLOC, SELFAUTODIR, SELFAUTOPARENT, and TEXMFDBS |
|
695 to the empty string. |
|
696 |
3832
|
697 2001-05-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
698 |
|
699 * Array2.h (Array2<T>::operator = (const Array2<T>&)): |
|
700 Don't check for rep != a.rep. |
|
701 |
3827
|
702 2001-05-02 Mumit Khan <khan@nanotech.wisc.edu> |
|
703 |
|
704 * oct-fftw.h, oct-fftw.cc: New files. |
|
705 * Makefile.in (INCLUDES, SOURCES): Add new files. |
|
706 * CMatrix.cc (ComplexMatrix::{fourier, ifourier, fourier2d, |
|
707 ifourier2d}): Use fftw if available. |
|
708 * dMatrix.cc (Matrix::{fourier, ifourier, fourier2d, ifourier2d}): |
|
709 Likewise. |
|
710 |
3821
|
711 2001-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
712 |
|
713 * Makefile.in (install-lib): Don't use mk-libdir-link. |
|
714 (install-inc): Don't use mk-includedir-link. |
|
715 |
3803
|
716 2001-02-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
717 |
|
718 * lo-cutils.c (octave_gethostname): New function. |
|
719 * lo-utils.h: Provide declaration. |
|
720 * oct-env.cc (octave_env::do_get_host_name): |
|
721 Call octave_gethostname, instead of gethostname. |
|
722 |
|
723 * lo-cutils.c (gethostname): Define here. |
|
724 * lo-sysdep.cc: Not here. |
|
725 |
3786
|
726 2001-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
727 |
|
728 * lo-cutils.c: Don't declare strptime. |
|
729 (oct_strptime): Cast return type of strptime to char*. |
|
730 |
3777
|
731 2001-02-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
732 |
3779
|
733 * oct-rl-edit.c (octave_rl_newline): Call rl_newline with two args. |
|
734 (octave_rl_set_name): call rl_re_read_init_file with two args. |
|
735 (octave_rl_read_init_file): Ditto. |
|
736 (octave_rl_clear_undo_list): Call rl_free_undo_list, not |
|
737 free_undo_list. |
|
738 (octave_rl_completion_matches): Call rl_completion_matches, not |
|
739 completion_matches. |
|
740 (octave_rl_enable_paren_matching): New function. |
|
741 (octave_rl_set_blink_matching_paren_flag): Delete. |
|
742 (octave_rl_get_blink_matching_paren_flag): Delete. |
|
743 |
3777
|
744 * lo-mappers.h, lo-mappers.cc (log10 (const Complex&), |
|
745 tanh (const Complex&)): Declare and define if not |
|
746 CXX_ISO_COMPLIANT_LIBRARY. |
|
747 |
3776
|
748 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
749 |
|
750 * lo-mappers.h (tanh (const Complex&)): Only declare if not |
|
751 CXX_ISO_COMPLIANT_LIBRARY. |
|
752 |
3775
|
753 2001-02-05 Mumit Khan <khan@nanotech.wisc.edu> |
|
754 |
3776
|
755 * lo-mappers.cc (tanh (const Complex&)): Only define if not |
|
756 CXX_ISO_COMPLIANT_LIBRARY. |
|
757 |
3775
|
758 * Makefile.in (TEMPLATE_AR, TEMPLATE_ARFLAGS): Use to create |
|
759 archive libraries containing templates. |
|
760 |
|
761 * ArrayN-idx.h (freeze, all_ok, any_orig_empty, any_zero_len, |
|
762 get_zero_len_size, all_colon_equiv): Inline. |
|
763 (ArrayN<T>::index): Rename idx to arr_idx. |
|
764 * ArrayN.cc (ArrayN<T>::index, ArrayN<T>::compute_index, |
|
765 ArrayN<T>::get_size, ArrayN<T>::range_error, ArrayN<T>::range_error, |
|
766 increment_index, ArrayN<T>::resize, ArrayN<T>::insert): Likewise. |
|
767 |
|
768 2001-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
769 |
|
770 * lo-mappers.h, lo-mappers.cc (tan (const Complex&), |
|
771 log10 (const Complex&)): Delete. |
|
772 |
|
773 * oct-cmplx.h: Define forwarding functions for real, imag, abs, |
|
774 arg, norm, conj, polar, cos, cosh, exp, log, log10, pow, sin, |
|
775 sinh, sqrt, tan, and tanh. |
|
776 |
3769
|
777 2001-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
778 |
|
779 * file-ops.cc, help.cc, load-save.cc, pr-output.cc, utils.cc: |
|
780 Add std:: namespace qualifier as needed. |
|
781 |
|
782 * mx-inlines.cc: Rename all functions with mx_inline_ prefix. |
|
783 Change all uses to match. |
|
784 |
3767
|
785 2001-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
786 |
|
787 * lo-cutils.c: Don't delcare strptime. |
|
788 |
3760
|
789 2001-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
790 |
|
791 * CMatrix.cc (operator * (const ComplexMatrix&, const ComplexMatrix&): |
|
792 Return correct size result for empty matrix case. |
|
793 |
3757
|
794 2000-12-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
795 |
|
796 * lo-mappers.cc (xmin (const Complex&, const Complex& y): |
|
797 If args are equal in magnitude, return first arg instead of |
|
798 second. |
|
799 |
3752
|
800 2000-12-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
801 |
3755
|
802 * Range.cc (Range::nelem_internal): Call tfloor, not round, but |
|
803 then try harder to compute correct number of elements. |
3753
|
804 |
3752
|
805 * dMatrix.cc (Matrix::lssolve): Ask DGELSS for size of work vector. |
|
806 * CMatrix.cc (ComplexMatrix::lssolve): Likewise, for ZGELSS. |
|
807 |
3750
|
808 2000-12-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
809 |
3751
|
810 * Range.cc (Range::nelem_internal): Call round here, not tfloor. |
|
811 Rename n_intervals to be n_elt. |
|
812 |
3750
|
813 * strptime.c: Surround everything after including config.h in |
|
814 #ifndef HAVE_STRPTIME ... #endif. |
|
815 |
3742
|
816 2000-11-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
817 |
|
818 * Array-idx.h (assign): When resizing, cast fill value to LT. |
|
819 * Array2-idx.h (MAYBE_RESIZE_LHS): Likewise. |
|
820 |
3741
|
821 2000-11-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
822 |
|
823 * MArray-defs.h: Protect against multiple inclusion. |
|
824 |
3739
|
825 2000-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
826 |
|
827 * data-conv.h (enum save_type): Move LS_U_LONG and LS_LONG to the |
|
828 end of the list, to be compatible with previous versions of Octave. |
|
829 |
3736
|
830 2000-11-16 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
831 |
|
832 * oct-time.cc (DEFINE_SET_INT_FIELD_FCN): Don't check limits here, |
|
833 since mktime is supposed to `normalize' the results for us. |
|
834 |
3731
|
835 2000-10-31 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
836 |
|
837 * Array2.cc (Array2<T>::transpose): Avoid copy for empty matrices |
3732
|
838 and vectors. Use xelem for faster access to elements when copying. |
3731
|
839 |
3726
|
840 2000-10-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
841 |
|
842 * CMatrix.cc (ComplexMatrix::cumsum, ComplexMatrix::cumprod): |
|
843 Correct indexing for operation across rows. |
|
844 * dMatrix.cc (Matrix::cumsum, Matrix::cumprod): Likewise. |
|
845 |
3725
|
846 2000-10-12 Paul Kienzle <pkienzle@kienzle.powernet.co.uk> |
|
847 |
|
848 * Array2-idx.h (Array2<T>::index (idx_vector&)): Avoid copying |
|
849 elements if arg is a colon. |
|
850 |
3723
|
851 2000-10-12 Cai Jianming <caijianming@yahoo.co.uk> |
|
852 |
3795
|
853 * dMatrix.cc (Matrix::cumprod (int) const): New arg, DIM. |
3723
|
854 (Matrix::cumsum (int) const): Likewise. |
|
855 (Matrix::prod (int) const): Likewise. |
|
856 (Matrix::sum (int) const): Likewise. |
|
857 (Matrix::sumsq (int) const): Likewise. |
|
858 * CMatrix.cc (ComplexMatrix::cumprod (int dim) const): Likewise. |
|
859 (ComplexMatrix::cumsum (int) const): Likewise. |
|
860 (ComplexMatrix::prod (int) const): Likewise. |
|
861 (ComplexMatrix::sum (int) const): Likewise. |
|
862 (ComplexMatrix::sumsq (int) const): Likewise. |
|
863 |
3722
|
864 2000-10-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
865 |
|
866 * Array2-idx.h (Array2<T>::index (idx_vector&)): Correctly set |
|
867 size if Array<T>::index returns an empty array. |
|
868 |
3710
|
869 2000-08-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
870 |
|
871 * file-ops.cc (file_ops::link, file_ops::symlink, |
|
872 file_ops::readlink): New functions. |
|
873 |
3709
|
874 2000-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
875 |
|
876 * Array2-idx.h (Array2<T>::index (idx_vector&)): If a scalar is |
|
877 indexed, always return an object the same size as the index arg. |
|
878 |
|
879 * oct-time.cc (octave_base_tm::strftime): Return empty string for |
|
880 empty format. |
|
881 |
3706
|
882 2000-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
883 |
|
884 * lo-cutils.c (oct_strptime): New function. |
|
885 * oct-time.cc (octave_strptime::init): Call it instead of strptime. |
|
886 Don't declare strptime. Don't define _XOPEN_SOURCE or _BSD_SOURCE. |
|
887 |
3702
|
888 2000-07-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
889 |
3703
|
890 * oct-time.cc: Comment out _BSD_SOURCE and _XOPEN_SOURCE definitions. |
|
891 |
3702
|
892 * Makefile.in (MATRIX_INC): Add ArrayN-idx.h to the list. |
|
893 |
3689
|
894 2000-06-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
895 |
|
896 * dMatrix.h (read_int): Provide declaration. |
|
897 |
3688
|
898 2000-06-29 James R. Van Zandt <jrv@vanzandt.mv.com> |
|
899 |
|
900 * data-conv.cc (read_doubles): Handle EIGHT_BYTE_INT cases. |
|
901 (write_doubles): Ditto. |
|
902 * data-conv.h: Ditto. |
|
903 (enum save_type): New values, LS_U_LONG and LS_LONG. |
|
904 |
3685
|
905 2000-06-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
906 |
|
907 * boolMatrix.h: Declare MM_CMP_OPS here. |
|
908 * boolMatrix.cc: Define them here. |
|
909 |
3680
|
910 2000-06-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
911 |
|
912 * Array2-idx.h (assign): Allow x(bool) = RHS to succeed if x is |
|
913 previously undefined and set size of x to size of bool index. |
|
914 * idx-vector.cc (IDX_VEC_REP::maybe_convert_one_zero_to_idx): |
|
915 Allow z_len to be zero. |
|
916 (IDX_VEC_REP::freeze): If z_len is zero, set frozen_at_z_len to len. |
|
917 If frozen, don't assert that frozen_at_z_len == z_len. |
|
918 |
3670
|
919 2000-05-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
920 |
|
921 * oct-rl-edit.c (octave_rl_clear_screen): Call _rl_clear_screen |
|
922 instead of rl_clear_screen. |
|
923 |
3665
|
924 2000-05-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
925 |
|
926 * Array-d.cc: Instantiate ArrayN<double> here too. |
|
927 * Array-idx-vec.cc, ArrayN-idx.h, ArrayN.cc, ArrayN.h: New files. |
|
928 * Makefile.in: Add them to the appropriate lists. |
|
929 |
3657
|
930 2000-04-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
931 |
|
932 * Array.cc (Array<T>::operator =): Don't set max_indices to 1 here. |
|
933 |
3635
|
934 2000-03-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
935 |
|
936 * lo-sysdep.h: octave_chdir returns int, not bool. |
|
937 |
3615
|
938 2000-03-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
939 |
|
940 * Makefile.in (liboctave.$(SHLEXT)): Delete target |
|
941 before rebuilding. |
|
942 |
|
943 2000-03-21 Ben Sapp <bsapp@nua.lampf.lanl.gov>: |
|
944 |
|
945 * liboctave/Makefile.in (liboctave.$(LIBEXT)): New target. |
|
946 (libraries): Depend only on library targets, not archive members. |
|
947 |
3613
|
948 2000-03-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
949 |
|
950 * Makefile.in: (objects): New target. |
|
951 |
|
952 * lo-cutils.c: New file. |
|
953 * Makefile.in (SOURCES): Add it to the list. |
|
954 * lo-utils.h: Declare octave_qsort here. |
|
955 * Array.h (Array::qsort): Use it here. |
|
956 |
3607
|
957 2000-03-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
958 |
|
959 * oct-time.cc: Include <sys/types.h> and <unistd.h>, if available. |
|
960 |
3598
|
961 2000-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
962 |
|
963 * oct-rl-hist.c (octave_history_list): Do something when not |
|
964 printing line numbers. Fix reallocation of retval. |
|
965 |
3597
|
966 2000-02-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
967 |
|
968 * Makefile.in (install-inc): Install files in |
|
969 $(octincludedir)/octave. |
|
970 (uninstall): Remove them from the correct directory too. |
|
971 |
|
972 * oct-time.cc: Temporarily define _BSD_SOURCE and _XOPEN_SOURCE if |
|
973 they are not already defined. |
|
974 |
3588
|
975 2000-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
976 |
|
977 * CRowVector.cc, CRowVector.h, CColVector.cc, CColVector.h: |
|
978 Delete declarations and definitions of mixed-type vector-vector ops. |
|
979 |
3585
|
980 2000-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
981 |
|
982 * CMatrix.h, CMatrix.cc: Add lssolve methods for real-valued RHS |
|
983 matrix and vector objects. |
|
984 |
|
985 * mx-op-defs.h (DMM_BIN_OP): Explicitly request conversion to |
|
986 return type from second arg type. |
|
987 (MDM_BIN_OP): Likewise, for first arg type. |
|
988 |
|
989 * dMatrix.cc (Matrix::fourier, Matrix::ifourier, |
|
990 Matrix::fourier2d, Matrix::ifourier2d): Likewise. |
|
991 |
|
992 * EIG.cc (EIG::symmetric_init, EIG::hermitian_init): Explicitly |
|
993 request ColumnVector to ComplexColumnVector, and Matrix to |
|
994 ComplexMatrix conversions. |
|
995 |
|
996 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Give balancing_mat its |
|
997 initial value using ComplexMatrix constructor. |
|
998 |
|
999 * CColVector.cc (product, quotient, |
|
1000 operator * (const DiagMatrix&, const ComplexColumnVetor&)): |
|
1001 Fix type of returned value. |
|
1002 * CDiagMatrix.cc (ComplexDiagMatrix::row, |
|
1003 ComplexDiagMatrix::column, ComplexDiagMatrix::inverse): Likewise. |
|
1004 |
|
1005 * Array.h, CColVector.h, CDiagMatrix.h, CMatrix.h, CRowVector.h, |
|
1006 MArray.h, MDiagArray2.h, dColVector.h, dDiagMatrix.h, dMatrix.h, |
|
1007 dRowVector.h: Declare some constructors explicit, to disallow |
|
1008 potentially problematic automatic type conversions. |
|
1009 |
3580
|
1010 2000-02-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1011 |
3582
|
1012 * vx-rv-crv.h, vx-cv-ccv.h, vx-crv-rv.h, vx-ccv-cv.h, |
|
1013 vx-rv-crv.cc, vx-cv-ccv.cc, vx-crv-rv.cc, vx-ccv-cv.cc: |
|
1014 More new files. |
|
1015 * Makefile.in: Add them to the appropriate lists. |
|
1016 |
|
1017 * vx-ccv-s.h, vx-crv-s.h, vx-cs-cv.h, vx-cs-rv.h, vx-cv-cs.h, |
|
1018 vx-rv-cs.h, vx-s-ccv.h, vx-s-crv.h, vx-ccv-s.cc, vx-crv-s.cc, |
|
1019 vx-cs-cv.cc, vx-cs-rv.cc, vx-cv-cs.cc, vx-rv-cs.cc, vx-s-ccv.cc, |
|
1020 vx-s-crv.cc:, New files. |
|
1021 * Makefile.in: Add them to the appropriate lists. |
|
1022 |
|
1023 * CRowVector.h, CRowVector.cc, CColVector.h, CColVector.cc: |
|
1024 Delete scalar by vector and vector by scalar binary ops. |
|
1025 |
3580
|
1026 * MArray-defs.h: More new macros to handle MDiagArray operators. |
|
1027 * dDiagMatrix.h, CDiagMatrix.h: Use the op-forwarding macros. |
|
1028 |
3573
|
1029 2000-02-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1030 |
3578
|
1031 * oct-rl-edit.c (octave_rl_set_event_hook): Take address of |
|
1032 rl_event_hook before casting to void **. |
|
1033 (octave_rl_set_startup_hook): Likewise, for rl_startup_hook. |
|
1034 |
3574
|
1035 * MArray-defs.h: Many new macros to make declaration and |
|
1036 definition of operators more consistent. |
|
1037 |
|
1038 * MArray.h, MArray2.h, dColVector.h, dRowVector.h, CColVector.h, |
|
1039 CRowVector.h, dMatrix.h, CMatrix.h: Use them. |
3573
|
1040 |
3569
|
1041 2000-02-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1042 |
3572
|
1043 * dMatrix.cc (Matrix::ifourier): Cast divisor to double. |
|
1044 (Matrix::ifourier2d): Likewise. |
|
1045 * CMatrix.cc (ComplexMatrix::ifourier): Likewise. |
|
1046 (ComplexMatrix::ifourier2d): Likewise. |
|
1047 |
3569
|
1048 * Array.h (Array::ArrayRep::qsort): Cast len to size_t. |
|
1049 |
3504
|
1050 2000-02-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1051 |
3519
|
1052 * oct-rl-edit.c, oct-rl-edit.h: New files for interface to GNU |
|
1053 readline library. |
|
1054 * Makefile.in: Add them to the appropriate lists. |
|
1055 |
|
1056 * oct-rl-hist.c, oct-rl-hist.h: New files for interface to GNU |
|
1057 readline history library. |
|
1058 * Makefile.in: Add them to the appropriate lists. |
|
1059 |
3517
|
1060 * data-conv.cc (LS_DO_WRITE): Cast arg to ostream::write to char*. |
|
1061 (LS_DO_READ): Likewise, for istream::read. |
3518
|
1062 (write_doubles): Likewise. |
|
1063 (read_doubles): Likewise. |
3517
|
1064 |
3516
|
1065 * oct-env.cc (octave_env::do_polite_directory_format): |
|
1066 Use operator== and substr method to do limited-length string |
|
1067 comparison. |
|
1068 |
3513
|
1069 * Array2-idx.h, Array-idx.h: Avoid shadowing warnings for idx. |
3512
|
1070 |
3511
|
1071 * Quad.h: Use do_integrate as name of pure virtual function. |
|
1072 |
3508
|
1073 * base-de.h: Use tt instead of t as arg names. |
3511
|
1074 Add method with tcrit arg. |
|
1075 |
3509
|
1076 * DAE.h, DAE.cc: Likewise, also xx for x. |
3508
|
1077 |
3507
|
1078 * DASSL.cc (dassl_fcn_ptr, dassl_jac_ptr): New typedefs. |
|
1079 * LSODE.cc: lsode_fcn_ptr, lsode_jac_ptr): Ditto. |
|
1080 * Quad.cc (quad_fcn_ptr): Ditto. |
|
1081 * NLEqn.cc (hybrd1_fcn_ptr, hybrj1_fcn_ptr): Ditto. |
|
1082 |
3505
|
1083 * oct-getopt.h, oct-getopt.c: New files for interface to getopt. |
3519
|
1084 * Makefile.in: Add them to the appropriate lists. |
3505
|
1085 |
|
1086 * oct-kpse.h, oct-kpse.c: New files for interface to kpathsearch. |
3519
|
1087 * Makefile.in: Add them to the appropriate lists. |
3505
|
1088 |
3504
|
1089 * dMatrix.cc (write_int, read_int): No longer declared static. |
|
1090 |
|
1091 * CDiagMatrix.h: Delete decls for friend operators that are |
|
1092 handled by MDiagArray2 class. Move others outside class decl and |
|
1093 strip friend status. |
|
1094 * dDiagMatrix.h: Likewise. |
|
1095 |
|
1096 * MArray.h: Delete decls for friend operators inside class decl. |
|
1097 * MArray2.h: Ditto. |
|
1098 * MDiagArray2.h: Ditto. |
|
1099 |
|
1100 * MArray-defs.h (DO_VS_OP,, DO_SV_OP, DO_VV_OP, NEGV): Pass all |
|
1101 necessary parameters. Don't allocate memory in the macro. Change |
|
1102 all uses. |
|
1103 |
|
1104 * dMatrix.h (class Matrix): Delete `friend class' decls. |
|
1105 * CMatrix.h (class ComplexMatrix): Ditto. |
|
1106 |
|
1107 * mx-op-defs (MS_BOOL_OP, MS_BOOL_OPS, SM_BOOL_OP, SM_BOOL_OPS, |
|
1108 MM_BOOL_OP, MM_BOOL_OPS, MDM_MULTIPLY_OP, MDM_BIN_OPS, |
|
1109 DMM_MULTIPLY_OP, DMM_BIN_OPS): Pass zero constant as final arg, to |
|
1110 avoid type conflicts. Change all uses. |
|
1111 |
|
1112 * strptime.c (__mon_yday): Fix size of array decl. |
|
1113 |
|
1114 * mx-inlines.cc: Use `xnot' instead of `not' for function name. |
|
1115 |
|
1116 * chMatrix.cc (charMatrix::row_as_string): Delete extraneous |
|
1117 default value for second arg. |
|
1118 |
|
1119 * Array2.cc (Array2<T>::resize): Add Array<T>:: qulaifier to |
|
1120 references to ArrayRep. |
|
1121 |
3503
|
1122 2000-01-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1123 |
3504
|
1124 * Array.h (Array::ArrayRep): Now protected, not private. |
3503
|
1125 |
|
1126 * All source files: Include iostream, fstream, strstream, |
|
1127 etc. as needed instead of using forward declarations for these |
3504
|
1128 classes. Add std:: qualifier as needed. |
3503
|
1129 |
3498
|
1130 2000-01-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1131 |
|
1132 * oct-time.cc: Declare strptime extern "C". |
|
1133 |
3496
|
1134 2000-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1135 |
|
1136 * oct-time.cc [! HAVE_STRPTIME]: Provide declaration. |
|
1137 |
3488
|
1138 2000-01-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1139 |
3492
|
1140 * Array2.h (Array2<T>::get_size): Now protected instead of private. |
|
1141 * Array3.h, Array3.cc: Use it in constructors and resize methods |
|
1142 to get total size to be allocated. |
|
1143 |
3488
|
1144 * DASSL.cc (DASSL::integrate): Declare do_restart and save_output |
|
1145 as bool, not int. |
|
1146 |
3482
|
1147 2000-01-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1148 |
|
1149 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
1150 Allow A(idx) = RHS if idx is a boolean index with the same shape |
|
1151 as A, even when do_fortran_indexing is not enabled. |
|
1152 (Array2<T>::index (idx_vector& idx) const): Likewise, for A(idx). |
|
1153 |
3473
|
1154 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1155 |
3480
|
1156 * dMatrix.cc (Matrix::solve (...)): Add new variant with |
|
1157 function pointer as final arg. Passed function (if any) will be |
|
1158 called for singularity errors. |
|
1159 * CMatrix.cc (ComplexMatrix::solve (...)): Likewise. |
|
1160 |
|
1161 * dMatrix.cc (Matrix::pseudo_inverse): Use economy SVD. |
|
1162 * CMatrix.cc (ComplexMatrix::pseudo_inverse): Likewise. |
|
1163 |
3475
|
1164 * lo-ieee.cc (octave_ieee_init): Don't include sunmath.h. |
|
1165 No longer bother with infinity or quiet_nan. |
|
1166 |
3473
|
1167 * Array2.cc (Array2<T>::get_size): New function. |
|
1168 (Array2<T>::Array2, Array2<T>::resize): Use it. |
|
1169 |
3472
|
1170 2000-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1171 |
|
1172 * Array2-idx.h (Array2<T>::maybe_delete_elements (idx_vector&)): |
|
1173 New function. |
|
1174 (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
1175 Use it when indexing with one arg instead of faking a second one. |
|
1176 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): |
|
1177 Return empty matrices with the correct dimensions for A(:,:) = [] |
|
1178 and also A(:,idx) = [], and A(idx,:) = [] when idx enumerates all |
|
1179 rows or columns. |
|
1180 |
|
1181 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Recognize a bool |
|
1182 vector that is all true values with a length equal to n as colon |
|
1183 equivalent. |
|
1184 |
3470
|
1185 2000-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1186 |
|
1187 * strptime.c: Only include langinfo.h if _LIBC is defined. |
|
1188 |
|
1189 2000-01-21 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
3468
|
1190 |
|
1191 * CMatrix.cc (ComplexMatrix::expm): Apply permutation and scaling |
|
1192 operations directly in step 2 and reverse step 2. |
|
1193 * dMatrix.cc (Matrix::expm): Apply permutation and scaling |
|
1194 operations directly in step 2 and reverse step 2. |
|
1195 |
3465
|
1196 2000-01-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1197 |
|
1198 * oct-time.h, oct-time.cc (octave_strptime): New class. |
|
1199 |
|
1200 * strptime.c: New file, from glibc 2.1.2. |
|
1201 * Makefile.in (SOURCES): Add strptime.c to the list. |
|
1202 |
3419
|
1203 2000-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1204 |
|
1205 * MArray.h (MArray <const Array<T>&)): New constructor. |
|
1206 |
3415
|
1207 2000-01-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1208 |
|
1209 * pathsearch.cc (dir_path::all_directories): Avoid dereferencing |
|
1210 NULL directory list returned from kpse_element_dirs |
|
1211 |
3375
|
1212 1999-12-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1213 |
|
1214 * dbleLU.cc (LU::LU): Call DGETRF directly instead of calling DGESV. |
|
1215 * CmplxLU.cc (ComplexLU::ComplexLU): Likewise, call ZGETRF |
|
1216 directly, instead of calling ZGESV. |
|
1217 |
3358
|
1218 1999-11-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1219 |
|
1220 * data-conv.cc (init_sized_type_lookup_table): New function. |
|
1221 (string_to_data_type): Use it to improve lookup of data types. |
|
1222 |
3354
|
1223 1999-11-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1224 |
|
1225 * dMatrix.cc (is_symmetric): Move here from Array2.cc. |
|
1226 * Array2.h (is_symmetric): Delete declaration. |
|
1227 |
3347
|
1228 1999-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1229 |
|
1230 * oct-env.cc (do_get_user_name): Reverse sense of test. |
|
1231 |
3344
|
1232 1999-11-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1233 |
|
1234 * oct-time.cc (Fstrftime): Undo previous change. |
|
1235 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
1236 |
3334
|
1237 1999-11-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1238 |
3336
|
1239 * dbleSVD.cc (SVD::init): Let DGESVD determine work space requirement. |
|
1240 * CmplxSVD.cc (ComplexSVD::init): Likewise, for complex version. |
|
1241 |
3334
|
1242 * dbleSCHUR.cc (SCHUR::init): IWORK is always referenced by dgeesx. |
|
1243 Don't forget to pass length of third string argument to dgeesx. |
|
1244 |
|
1245 * CmplxSCHUR.cc (ComplexSCHUR::init): Don't forget to pass length |
|
1246 of third string argument to zgeesx. |
|
1247 |
3333
|
1248 1999-11-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1249 |
|
1250 * DiagArray2.cc (DiagArray2<T>::operator () (int, int)): |
|
1251 On errors, simply return `T ()'. |
|
1252 (DiagArray2<T>::checkelem (int, int)): Likewise. |
|
1253 |
3331
|
1254 1999-11-02 A. Scottedward Hodel <a.s.hodel@eng.auburn.edu> |
|
1255 |
|
1256 * dMatrix.cc (Matrix::expm): Do balancing here instead of using |
|
1257 AEPBALANCE class. |
|
1258 * CMatrix.cc (ComplexMatrix::expm): Likewise. |
|
1259 |
3325
|
1260 1999-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1261 |
|
1262 * oct-shlib.cc, oct-shlib.h: New files. |
|
1263 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
1264 |
3322
|
1265 1999-10-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1266 |
|
1267 * CRowVector.cc (linspace): Allow npoints == 1 if x1 == x2. |
|
1268 * dRowVector.cc (linspace): Ditto. |
|
1269 |
|
1270 * oct-time.cc (Fstrftime): Don't save or delete tm_zone. |
|
1271 (octave_time::octave_time (const octave_base_tm&)): Likewise. |
|
1272 |
3312
|
1273 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1274 |
|
1275 * DASSL.cc (DASSL::do_integrate (double)): If we have a function |
|
1276 to evaluate the Jacobian, set info(4), not iwork(4). |
|
1277 Set rwork(1) to the maximum step size, not rwork(2). |
|
1278 |
3290
|
1279 1999-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1280 |
|
1281 * oct-time.cc: Include <climits>. |
|
1282 |
3281
|
1283 1999-10-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1284 |
|
1285 * cmd-edit.h (command_editor::do_resize_terminal): New function. |
|
1286 * cmd-edit.cc (command_editor::resize_terminal): New function. |
|
1287 (gnu_readline::do_resize_terminal): New function. |
|
1288 |
3268
|
1289 Fri Sep 3 12:39:17 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1290 |
|
1291 * lo-mappers.cc: Include ieeefp.h and sunmath.h if we have them. |
|
1292 * lo-ieee.c: Likewise. |
|
1293 Delete extern "C" declarations for infinity and quiet_nan. |
|
1294 |
3262
|
1295 Fri Aug 20 07:58:00 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1296 |
3263
|
1297 * mx-inlines.cc (VS_OP, SV_OP, VV_OP): Delete `extern template' decls. |
|
1298 (VS_OP_FCN, SV_OP_FCN, VV_OP_FCN): Declare template functions |
|
1299 `inline', not `static inline'. |
|
1300 |
3262
|
1301 * idx-vector.cc (intcmp): Declare args as const void *, not int *, |
|
1302 then cast to const int * to compare. |
|
1303 |
3257
|
1304 Fri Jul 16 11:23:51 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1305 |
|
1306 * DAEFunc.h: Remove useless preprocessor conditional. |
|
1307 |
3255
|
1308 Thu Jul 15 14:10:33 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1309 |
3257
|
1310 * cmd-edit.cc (command_editor::do_decode_prompt_string): |
|
1311 Use octave_time object instead of time_t. |
|
1312 |
|
1313 * file-stat.h (file_stat::fs_atime, file_stat::fs_mtime, |
|
1314 file_stat::fs_ctime): Now octave_time objects. |
|
1315 (file_stat::atime, file_stat::mtime, file_stat::ctime): |
|
1316 Return octave_time objects. |
|
1317 (file_stat::is_newer): Args are now octave_time objects instead of |
|
1318 time_t. |
|
1319 |
3255
|
1320 * oct-time.h (octave_time::as_double): Delete. |
|
1321 (octave_time::operator double ()): New function. |
|
1322 (octave_time::operator time_t ()): New function. |
|
1323 (octave_time::ctime): New function. |
|
1324 (octave_base_tm::strftime): Renamed from format_as_string. |
|
1325 (octave_base_tm::asctime): New function. |
|
1326 (operator == (const octave_time&, const octave_time&), |
|
1327 operator != (const octave_time&, const octave_time&), |
|
1328 operator < (const octave_time&, const octave_time&), |
|
1329 operator <= (const octave_time&, const octave_time&), |
|
1330 operator > (const octave_time&, const octave_time&), |
|
1331 operator >= (const octave_time&, const octave_time&)): |
|
1332 New comparison functions. |
|
1333 |
|
1334 * strftime.c: Move here from src directory. |
|
1335 * Makefile.in (SOURCES): Add it to the list. |
|
1336 |
|
1337 * oct-time.h (octave_time::octave_time (time_t)): New constructor. |
|
1338 |
3253
|
1339 Wed Jul 14 17:38:07 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1340 |
|
1341 * oct-time.h, oct-time.cc: New files. |
|
1342 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
1343 |
|
1344 * systime.h: Move here from src directory. |
|
1345 * Makefile.in (INCLUDES): Add it to the list. |
|
1346 |
3248
|
1347 Mon Jul 12 22:34:34 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1348 |
|
1349 * mx-defs.h (b_d_Mapper, b_c_Mapper): New typedefs. |
|
1350 * dMatrix.cc (Matrix::map (b_d_Mapper)): New function. |
|
1351 * CMatrix.cc (ComplexMatrix::map (b_c_Mapper)): New function. |
|
1352 * lo-mappers.cc (xisinf, xisnan, xfinite): Return bool, not double. |
|
1353 |
|
1354 * lo-mappers.cc (xmin, xmax): New functions to correctly handle NaNs. |
|
1355 |
3243
|
1356 Mon May 10 07:45:11 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1357 |
|
1358 * MArray-defs.h (DO_VV_OP2): Fix macro definition to use arg. |
|
1359 |
|
1360 Wed May 5 20:06:10 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1361 |
|
1362 * Array2-idx.h (Array2<T>index (idx_vector& idx)): Always return a |
|
1363 column vector for A(:), for compatibility with Matlab. |
|
1364 |
|
1365 Fri Apr 23 11:52:23 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1366 |
|
1367 * LSODE.cc (LSODE::do_integrate (double)): Don't forget to set |
|
1368 iopt when there are optional inputs in rwork or iwork. |
|
1369 |
3238
|
1370 Fri Mar 26 11:26:32 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1371 |
|
1372 * Makefile.in (libraries): Use the libfoo.a(objects) method of |
|
1373 creating static libs. |
|
1374 |
|
1375 Thu Mar 4 02:17:04 1999 James Macnicol <jamesm@evans.ee.adfa.oz.au> |
|
1376 |
|
1377 * data-conv.cc (oct_data_conv::string_to_data_type): Handle uint16 |
|
1378 and uint32 data types. |
|
1379 |
|
1380 Thu Mar 4 01:51:37 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1381 |
|
1382 * lo-ieee.cc (octave_ieee_init): Don't use __alpha__-specific code |
|
1383 for Linux. Remove old Linux-specific code. |
|
1384 |
3233
|
1385 Tue Jan 19 09:34:55 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1386 |
|
1387 * dMatrix.cc (operator * (const ColumnVector& v, const RowVector& a)): |
|
1388 Don't require lengths to be equal. |
|
1389 * CMatrix.cc (operator * (const ComplexColumnVector& v, const |
|
1390 ComplexRowVector& a)): Likewise |
|
1391 |
3225
|
1392 Tue Nov 24 23:38:19 1998 Eric Norum <eric@skatter.USask.Ca> |
|
1393 |
|
1394 * statdefs.h: Only define mode_t if not already defined. |
|
1395 |
|
1396 Tue Nov 24 17:24:52 1998 john <john@arrows.demon.co.uk> |
|
1397 |
|
1398 * lo-specfun.cc (airy, biry): Set imaginary part of result to zero |
|
1399 when appropriate. |
|
1400 |
|
1401 Mon Nov 23 09:57:05 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1402 |
|
1403 * cmd-edit.cc (gnu_readline::gnu_readline): Set terminal name |
|
1404 before calling rl_initialize. |
|
1405 |
3220
|
1406 Tue Nov 17 23:47:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1407 |
|
1408 * lo-specfun.cc (besselh, airy, biry): New functions. |
|
1409 Update Bessel function support to use library by D. E. Amos. |
|
1410 |
3219
|
1411 Thu Nov 12 17:44:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1412 |
|
1413 * cmd-edit.h (command_editor::readline): Add new variation that |
|
1414 allows EOF information to be passed back to caller. |
|
1415 |
|
1416 * dMatrix.cc (Matrix::read): Do the right thing for EOF when |
|
1417 amount of data to read is unspecified. |
|
1418 |
3215
|
1419 Tue Nov 10 07:53:15 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1420 |
3219
|
1421 * oct-alloc.h (DECLARE_OCTAVE_ALLOCATOR): New macro. |
|
1422 (DEFINE_OCTAVE_ALLOCATOR): Ditto. |
|
1423 |
3215
|
1424 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, swap_8_bytes): |
|
1425 Add volatile qualifier to void* arg. |
|
1426 Cast volatile void* arg to volatile char*. |
|
1427 |
|
1428 Mon Nov 9 08:28:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1429 |
|
1430 * cmd-edit.h (command_editor::do_set_event_hook): New function. |
|
1431 (command_editor::do_restore_event_hook): Ditto. |
|
1432 * cmd-edit.cc (command_editor::set_event_hook): Ditto. |
|
1433 (command_editor::restore_event_hook): Ditto. |
|
1434 (gnu_readline::do_set_event_hook): Ditto. |
|
1435 (gnu_readline::do_restore_event_hook): Ditto. |
|
1436 (gnu_readline::previous_event_hook): New data member. |
|
1437 (gnu_readline::gnu_readline): Initialize previous_event_hook. |
|
1438 |
3206
|
1439 Mon Nov 2 13:36:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1440 |
|
1441 * Makefile.in (BINDISTLIBS): Don't include .$(SHLEXT_VER) in name. |
|
1442 |
|
1443 * Makefile.in (stmp-pic): New target. |
|
1444 ($(PICOBJ)): Depend on stmp-pic, not pic. |
|
1445 (clean): Remove stmp-pic |
|
1446 |
|
1447 * Makefile.in: Undo previous change to avoid optmization when |
|
1448 compiling lo-ieee.cc. |
|
1449 |
|
1450 Sun Nov 1 10:10:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1451 |
|
1452 * lo-mappers.cc (xfinite): Define in terms of xfinite for real and |
|
1453 imaginary parts. |
|
1454 (xisinf): Define in terms of xisinf for real and imaginary parts. |
|
1455 |
3203
|
1456 Thu Oct 29 18:57:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1457 |
|
1458 * boolMatrix.cc (boolMatrix::operator !): New function. |
|
1459 |
3196
|
1460 Fri Oct 23 21:46:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1461 |
|
1462 * pathsearch.h (dir_path::default_path): New data member. |
|
1463 * pathsearch.cc (dir_path::init): Use it. |
|
1464 |
|
1465 * Makefile.in: Avoid optmization when compiling lo-ieee.cc. |
|
1466 |
3189
|
1467 Fri Oct 16 01:08:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1468 |
|
1469 * chMatrix.cc (charMatrix::extract): New function. |
|
1470 (charMatrix::charMatrix (char c)): New constructor. |
|
1471 |
|
1472 Tue Oct 13 22:11:08 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1473 |
|
1474 * cmd-edit.h: (command_editor::do_read_init_file): New function. |
|
1475 * cmd-edit.cc (command_editor::read_init_file): New function. |
|
1476 (gnu_readline::do_read_init_file): Likewise. |
|
1477 |
3185
|
1478 Fri Sep 25 14:26:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1479 |
|
1480 * oct-env.cc (octave_env::do_get_home_directory): |
|
1481 If HOME can't be found, set it to "/". |
|
1482 (octave_env::do_get_user_name) |
|
1483 If user name can't be found, set it to "unknown". |
|
1484 (octave_env::do_get_host_name) |
|
1485 If host name can't be found, set it to "unknown". |
|
1486 |
|
1487 * pathsearch.h (dir_path::rehash): New function. |
|
1488 * pathsearch.cc (dir_path::init): Clear kpathsea's internal |
|
1489 diretcory cache before doing initialization. |
|
1490 |
3180
|
1491 Thu Sep 24 13:23:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1492 |
3185
|
1493 * dMatrix.cc (Qzval): Delete. |
|
1494 (qzhes, qzit, qzval): Delete F77_FCN declarations. |
|
1495 * dMatrix.h (Qzval): Delete declaration. |
|
1496 |
|
1497 * dbleGEPBAL.h, dbleGEPBAL.cc: Delete. |
|
1498 * Makefile.in (MATRIX_INC, MATRIX_SRC): Delete them from the lists. |
|
1499 * mx-ext.h: Don't include dbleGEPBAL. |
|
1500 |
3180
|
1501 * lo-ieee.cc (octave_ieee_init): For now, use X_CAST instead of |
|
1502 static_cast. |
|
1503 |
|
1504 Fri Sep 4 10:58:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1505 |
|
1506 * dMatrix.cc (Matrix::read): Skip after reading, not before. |
|
1507 From: Dr.-Ing. Torsten Finke <fi@igh-essen.com>. |
|
1508 |
|
1509 Wed Sep 2 09:50:21 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1510 |
|
1511 * lo-ieee.cc (octave_ieee_init): For Linux on arm, don't rely on |
|
1512 HUGE_VAL and NAN. |
|
1513 |
|
1514 Wed Aug 26 15:04:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1515 |
|
1516 * Array2-idx.h (assign (Array2<LT>& lhs, const Array2<RT>& rhs)): |
|
1517 Handle x(i) = scalar for do_fortran_indexing == 1. |
|
1518 |
|
1519 Thu Jul 30 00:34:10 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1520 |
|
1521 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const charMatrix&)): |
|
1522 Alloctate space before attempting to use it. |
|
1523 (ComplexMatrix::ComplexMatrix (const boolMatrix&)): Likewise. |
|
1524 |
3178
|
1525 Mon Jun 22 17:04:27 1998 Tomislav Goles <tom@ait-tech.com> |
|
1526 |
|
1527 * EIG.cc (EIG::init): Move invariant code outside loop. |
|
1528 |
|
1529 Thu Jun 18 11:08:23 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1530 |
|
1531 * MArray2.cc (MARRAY_A2A2_OP): If operands are empty, make result |
|
1532 have the same size as the operands. |
|
1533 |
|
1534 Thu May 28 10:41:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1535 |
|
1536 * DASSL.cc (DASSL::do_integrate): If an exception occurs in the |
|
1537 call to ddassl, set integration_error to 1 before calling the |
|
1538 error handler and returning. |
|
1539 * LSODE.cc (LSODE::do_integrate): Likewise. |
|
1540 |
3177
|
1541 Wed May 27 13:46:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1542 |
|
1543 * Array2-idx.h (assign): Allow A([],[]) = scalar and, if |
|
1544 do_fortran_indexing is set, A([]) = scalar. |
|
1545 * Array-idx.h (assign): Allow A([]) = scalar. |
|
1546 |
3176
|
1547 Thu May 14 11:50:24 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1548 |
|
1549 * mx-op-defs.h (MDM_MULTIPLY_OP): Compute result if dm_nc > 0, not |
|
1550 if dm_nc == 0. |
|
1551 |
3174
|
1552 Thu Apr 23 16:15:37 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1553 |
|
1554 * pathsearch.h (dir_path::p_orig): New field. |
|
1555 * pathsearch.cc (dir_path::init): Perform variable and tilde |
|
1556 expansion on the original path here. |
|
1557 (dir_path::find_all): Don't do anything if not initialized. |
|
1558 |
3164
|
1559 Tue Apr 14 14:41:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1560 |
|
1561 * Array2-idx.h (index): Allow x(:) even when do_fortran_indexing |
|
1562 is not set. |
|
1563 (index): Allow x = zeros (2, 0); x(1,:) to work. |
|
1564 |
|
1565 * lo-specfun.cc (gammainc): Use dgamit to compute |
|
1566 (\int_0^x exp(-t) t^(a-1) dt)/gamma(a), not just |
|
1567 \int_0^x exp(-t) t^(a-1) dt. |
|
1568 |
|
1569 Wed Apr 8 22:50:44 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1570 |
|
1571 * Array-C.cc, Array-b.cc, Array-ch.cc, Array-i.cc, Array-d.cc, |
|
1572 Array-s.cc: Change return types of all `assign' explicit |
|
1573 instantiations to be int, not void, to match the template decl in |
|
1574 Array.h. |
|
1575 |
3162
|
1576 Mon Apr 6 00:27:06 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1577 |
|
1578 * lo-specfun.cc (gammainc): Reorder args in call to xdgami. |
|
1579 |
3156
|
1580 Thu Feb 19 01:16:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1581 |
|
1582 * lo-specfun.cc (xgamma, xlgamma): Define here. |
|
1583 * lo-mappers.cc: Not here. |
|
1584 |
|
1585 * lo-specfun.h: Declare xgamma and xlgamma here. |
|
1586 * lo-mappers.h: Not here. |
|
1587 |
|
1588 * lo-specfun.h: Never declare gamma or lgamma. |
|
1589 |
3154
|
1590 Tue Feb 10 16:14:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1591 |
|
1592 * Array-idx.h (assign): Allow A([]) = X to succeed if X is an |
|
1593 empty matrix of any dimension. |
|
1594 |
3145
|
1595 Thu Feb 5 02:12:38 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1596 |
3147
|
1597 * oct-syscalls.cc (octave_syscalls::vfork): New function. |
|
1598 |
3146
|
1599 * lo-specfun.cc: Don't include dbleBessel.h. |
|
1600 |
|
1601 * Makefile.in (INCLUDES): Delete oct-math.h from the list. |
|
1602 |
3145
|
1603 * dir-ops.h (dir_entry::operator bool ()): Return bool, not void*. |
|
1604 * file-stat.h (file_stat::operator bool ()): Likewise. |
|
1605 * idx-vector.h (idx_vector::operator bool ()): Likewise. |
|
1606 * oct-group.h (octave_group::operator bool ()): Likewise. |
|
1607 * oct-passwd.h (octave_passwd::operator bool ()): Likewise. |
|
1608 |
|
1609 * data-conv.cc (IEEE_little_double_to_IEEE_big_double): |
|
1610 Don't cast arg in call to swap_8_bytes. |
|
1611 (IEEE_big_double_to_IEEE_little_double): Ditto |
|
1612 (IEEE_big_float_to_IEEE_little_float): Don't cast arg in call to |
|
1613 swap_4_bytes. |
|
1614 (IEEE_little_float_to_IEEE_big_float): Ditto |
|
1615 |
|
1616 * oct-alloc.cc (grow): Use X_CAST, not static_cast. |
|
1617 * prog-args.cc (prog_args::getopt): Likewise. |
|
1618 * dMatrix.cc (read_int, do_read, write_int, do_write): Likewise. |
|
1619 * cmd-edit.cc (gnu_readline::do_set_completion_function): Likewise. |
|
1620 * data-conv.cc (LS_DO_READ, LS_DO_WRITE, read_doubles, write_doubles): |
|
1621 Likewise. |
|
1622 |
|
1623 * byte-swap.h (swap_bytes, swap_2_bytes, swap_4_bytes, |
|
1624 swap_8_bytes): Declare ptr arg as void*, then use cast. |
|
1625 |
3141
|
1626 Mon Feb 2 01:42:56 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1627 |
|
1628 * Makefile.in (install, uninstall): Use $(octlibdir), not $(libdir). |
|
1629 Use $(mk-libdir-link). |
|
1630 |
|
1631 * file-stat.cc (file_stat::update_internal): Use stat and lstat, |
|
1632 not SAFE_STAT and SAFE_LSTAT. |
|
1633 (lstat): New function, defined if HAVE_LSTAT is not defined. |
|
1634 * safe-xstat.hin, safe-xstat.cin: Delete. |
|
1635 * Makefile.in: Delete rules for safe-stat.h, safe-stat.c, |
|
1636 safe-lstat.h, and safe-lstat.cc. |
|
1637 |
3136
|
1638 Fri Jan 30 23:48:43 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1639 |
|
1640 * chMatrix.cc (charMatrix::all, charMatrix::any): New functions. |
|
1641 |
3130
|
1642 Tue Jan 20 16:30:00 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1643 |
|
1644 * dMatrix.cc (Matrix::expm): Skip trace normalization step if the |
|
1645 trace is negative. |
|
1646 * CMatrix.cc (ComplexMatrix::expm): Skip trace normalization if |
|
1647 the real part of the trace is negative. |
|
1648 |
|
1649 Mon Jan 19 16:01:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1650 |
|
1651 * dMatrix.cc (Matrix::expm): Call xdlange instead of dlange. |
|
1652 * CMatrix.cc (ComplexMatrix::expm): Call xzlange instead of zlange. |
|
1653 |
|
1654 * Array2-idx.h (assign): Allow operations like a = 1; a(2:3) = [1;2] |
|
1655 to succeed. |
|
1656 |
3125
|
1657 Thu Dec 18 14:53:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1658 |
|
1659 * idx-vector.cc (IDX_VEC_REP::sort): Don't do anything unless len > 1. |
|
1660 (make_uniq): Likewise. |
|
1661 |
|
1662 Fri Dec 12 10:58:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1663 |
|
1664 * lo-ieee.cc (octave_ieee_init): Check for linux before __alpha__. |
|
1665 |
3119
|
1666 Sun Nov 30 14:59:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1667 |
3121
|
1668 * lo-mappers.cc: Include cmath and lo-specfun.h, not oct-math.h. |
|
1669 |
|
1670 * lo-specfun.h, lo-specfun.cc: New files. |
3119
|
1671 * Makefile.in (INCLUDES, SOURCES): Add them to the lists. |
|
1672 |
3121
|
1673 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c, |
|
1674 oct-math.h: Delete. |
|
1675 * Makefile.in (SOURCES): Delete them from the list. |
|
1676 |
3112
|
1677 Wed Nov 26 20:02:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1678 |
|
1679 * lo-sysdep.cc (octave_getcwd): Prefer getcwd over getwd. |
|
1680 |
3107
|
1681 Wed Nov 19 02:30:04 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
1682 |
|
1683 Changes to make support egcs snapshots that implement explicit |
|
1684 specification of template functions according to CD2. |
|
1685 |
|
1686 * MArray.h: If NEED_TEMPLATE_FCN_SPECS is defined, add explicit |
|
1687 template function specs for template friends. |
|
1688 * MArray2.h: Likewise. |
|
1689 * MDiagArray2.h: Likewise. |
|
1690 |
3095
|
1691 Thu Nov 13 21:57:16 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1692 |
|
1693 * CMatrix.cc (sumsq): Compute equivalent of sum (x .* conj (x)) |
|
1694 |
3092
|
1695 Thu Oct 2 17:13:02 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> |
|
1696 |
|
1697 * CRowVector.cc (linspace): Removed attempt for implicit conversion |
|
1698 to complex<double>(int) instead of complex<double>(double). |
|
1699 |
|
1700 * lo-mappers.cc (atanh): Ditto. |
|
1701 |
3079
|
1702 Thu Jul 31 22:13:54 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1703 |
|
1704 * idx-vector.cc (IDX_VEC_REP::sort): New function. |
|
1705 * idx-vector.h (idx_vector::sort): Ditto. |
|
1706 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use it before |
|
1707 trying to delete elements specified by the index vectors. |
|
1708 |
3075
|
1709 Fri Jul 25 17:31:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1710 |
|
1711 * dMatrix.cc (Matrix::lssolve): Increase lwork by factor of 16. |
|
1712 * CMatrix.cc (ComplexMatrix::lssolve): Ditto. |
|
1713 |
3074
|
1714 Thu Jul 24 14:32:48 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1715 |
|
1716 * file-ops.cc (tilde_expand_word): Fix off-by-one error. |
|
1717 |
3069
|
1718 Wed Jul 9 19:40:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1719 |
|
1720 * lo-sysdep.cc (octave_getcwd): If getwd is available, use it. |
|
1721 Call error handler if we can't find the current directory. |
|
1722 |
3068
|
1723 Mon Jul 7 21:14:41 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1724 |
3069
|
1725 * lo-mappers.cc (xisnan (double)): Return only 1 or 0. |
|
1726 (xfinite (double)): Ditto. |
|
1727 |
3068
|
1728 * dbleQR.cc (QR::init): Don't forget to initialize Q when type is raw. |
|
1729 * CmplxQR.cc (ComplexQR::init): Ditto. |
|
1730 |
3056
|
1731 Sun Jun 15 21:06:37 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1732 |
|
1733 * lo-mappers.cc (acos (const Complex&)): Select branch that is |
|
1734 compatible with Matlab. |
|
1735 |
3050
|
1736 Tue Jun 10 10:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1737 |
|
1738 * Array2-idx.h: Correctly handle empty matrices indexed by a |
|
1739 single colon. |
|
1740 |
3040
|
1741 Fri Jun 6 04:27:40 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1742 |
3049
|
1743 * lo-mappers.cc (xlgamma): Use F77_XFCN function to call dlgams. |
|
1744 (xgamma): Likewise, for calling xdgamma. |
|
1745 |
3042
|
1746 * FSQP.h, NPSOL.h, QPSOL.h, FSQP.cc, NPSOL.cc, QPSOL.cc: Delete |
|
1747 * Makefile.in (INCLUDES, SOURCES): Remove them from the lists. |
|
1748 |
3040
|
1749 * file-ops.cc (file_ops::tilde_expand): Steal more code from bash |
|
1750 to do better job expanding tildes. |
|
1751 |
|
1752 * str-vec.cc (string_vector::string_vector (const char * const *): |
|
1753 Use temporary variable to compute length. |
|
1754 |
3029
|
1755 Thu Jun 5 01:44:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1756 |
3034
|
1757 * Makefile.in: Make building of static library optional. |
3036
|
1758 (liboctave.$(SHLEXT_VER)): Add $(SONAME_FLAGS) to command. |
3034
|
1759 |
3029
|
1760 * Makefile.in (stamp-picdir): Delete. |
|
1761 (pic): New target. Don't worry so much about creating pic |
|
1762 directory only when it is really needed. |
|
1763 (stamp-interp): Delete. |
|
1764 (libraries): New target. Depend on shared library directly. |
|
1765 |
3024
|
1766 Wed Jun 4 00:08:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1767 |
|
1768 * pathsearch.h, pathsearch.cc (dir_pat::set_program_name): |
|
1769 New static function. |
|
1770 |
3012
|
1771 Mon Jun 2 12:44:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1772 |
|
1773 * lo-mappers.cc (fix): Use floor and ceil instead of casting to int. |
|
1774 |
3004
|
1775 Thu May 22 16:20:43 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1776 |
|
1777 * cmd-edit.h, cmd-edit.cc: Rename set_paren_string_delimiters to |
|
1778 set_basic_quote_characters, to match new version of readline. |
|
1779 |
|
1780 * cmd-edit.cc (do_restore_terminal_state): Call readline function |
|
1781 for restoring terminal state through rl_deprep_term_function, now |
|
1782 declared in readline.h |
|
1783 (rl_deprep_terminal): Delete declaration. |
|
1784 |
2993
|
1785 Wed May 21 16:30:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1786 |
|
1787 * Makefile.in (install-in): Use new mk-includedir-link macro. |
|
1788 (install-lib): Install in $octlibdir. Use new mk-libdir-link macro. |
|
1789 |
2968
|
1790 Thu May 15 11:46:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1791 |
|
1792 * cmd-edit.cc (command_editor::increment_current_command_number): |
|
1793 New static function. |
|
1794 |
2964
|
1795 Mon May 12 02:14:13 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1796 |
2966
|
1797 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Make it work when |
|
1798 the vector is not sorted. |
|
1799 |
2964
|
1800 * CMatrix.cc (ComplexMatrix::operator !): Return boolMatrix. |
|
1801 * dMatrix.cc (Matrix::operator !): Likewise |
|
1802 |
2941
|
1803 Wed May 7 21:14:06 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1804 |
|
1805 * oct-syscalls.h, oct-syscalls.cc: New files. |
|
1806 |
|
1807 * cmd-edit.h, cmd-edit.cc: Handle completion function. |
|
1808 |
|
1809 * str-vec.h, str-vec.cc (string_vector::uniq): New function. |
|
1810 |
2938
|
1811 Tue May 6 00:52:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1812 |
2941
|
1813 * Makefile.in (INCLUDES_FOR_INSTALL): New variable. |
|
1814 (install-inc): Use it. |
|
1815 |
2938
|
1816 * file-ops.h, file-ops.cc (tempnam): Add DIR and PREFIX args. |
|
1817 Handle errors and missing functions consistently. |
|
1818 |
|
1819 * oct-group.h, oct-group.cc: New files. |
|
1820 |
|
1821 * oct-passwd.cc: Handle errors and missing functions consistently. |
|
1822 |
|
1823 * str-vec.h, str-vec.cc (c_str_vec, delete_c_str_vec): New functions. |
|
1824 |
2934
|
1825 Mon May 5 17:53:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1826 |
|
1827 * file-ops.cc: (file_ops::tilde_expand): Use new octave_passwd class. |
|
1828 * oct-env.cc (octave_env::do_get_user_name): Likewise. |
|
1829 |
|
1830 * oct-passwd.h, oct-passwd.cc: New files. |
|
1831 |
2926
|
1832 Sun May 4 22:17:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1833 |
|
1834 * statdefs.h: Only include sys/types.h if HAVE_SYS_STAT_H is defined. |
|
1835 |
|
1836 * mach-info.h, mach-info.cc: Add missing const qualifiers. |
|
1837 (instance_ok ()): New function. |
|
1838 |
|
1839 * glob-match.h, glob-match.cc: Rename from oct-glob.h, oct-glob.cc. |
|
1840 |
|
1841 * cmd-hist.h, cmd-hist.cc: Make it work without GNU readline. |
|
1842 |
|
1843 * lo-utils.h, lo-utils.cc (strsave, octave_putenv): Move here from |
|
1844 src/utils.h and src/utils.cc. |
|
1845 (octave_fgets): New function, extracted from src/input.cc. |
|
1846 |
|
1847 * cmd-edit.h, cmd-edit.cc: New files. Provide wrapper class for |
|
1848 GNU readline, and allow Octave to work without GNU readline. |
|
1849 |
|
1850 * lo-sysdep.h, lo-sysdep.cc: New files for miscellaneous |
|
1851 system-dependent functions. |
|
1852 |
|
1853 * oct-env.h, oct-env.cc: New files for process environment stuff. |
|
1854 |
|
1855 * file-stat.h, file-stat.cc: New files. Extract file_stat class |
|
1856 from file-ops.h and file-ops.cc and move here. |
|
1857 |
|
1858 * file-ops.h, file-ops.cc: Wrap functions in struct. Move |
|
1859 tilde_expand functions here from src/dirfns.cc. |
|
1860 |
|
1861 Fri May 2 19:50:12 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1862 |
|
1863 * pathlen.h: New file, from ../src. |
|
1864 |
2917
|
1865 Tue Apr 29 04:39:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1866 |
|
1867 * Array2-idx.h (Array2<T>::maybe_delete_elements): Prevent |
|
1868 out-of-bounds indexing of the index array. |
|
1869 * Array-idx.h (Array<T>::maybe_delete_elements): Likewise. |
|
1870 |
2850
|
1871 Fri Mar 28 15:37:09 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1872 |
|
1873 * LSODE.h (x_step_limit): New field. |
|
1874 (LSODE_options::init): Initialize it. |
|
1875 (LSODE_options::copy): Copy it. |
|
1876 (LSODE_options::set_step_limit, LSODE_options::step_limit): |
|
1877 New functions. |
|
1878 (LSODE::working_too_hard): Delete. |
|
1879 * LSODE.cc (LSODE::do_integrate): Handle step limit. |
|
1880 |
2844
|
1881 Wed Mar 26 15:31:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1882 |
|
1883 * MArray-b.cc: Delete. |
|
1884 * Makefile.in: Delete it from the lists. |
|
1885 |
|
1886 * boolMatrix.h (class bboolMatrix): Derive from Array2, not |
|
1887 MArray2, since most of the numeric ops don't really make sense. |
|
1888 |
2829
|
1889 Tue Mar 25 17:37:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1890 |
2832
|
1891 * boolMatrix.cc (boolMatrix::all, boolMatrix::any): New functions. |
|
1892 |
|
1893 * dMatrix.cc (Matrix::all, Matrix::any): Return boolMatrix. |
|
1894 * CMatrix.cc (ComplexMatrix::all, ComplexMatrix::any): Likewise. |
|
1895 |
2830
|
1896 * idx-vector.h (idx_vector::idx_vector_rep::freeze, |
|
1897 idx_vector::freeze): Delete prefer_zero_one arg. |
|
1898 * Array-idx.h, Array2-idx.h: Change all callers. |
|
1899 |
|
1900 * Array-flags.h, Array-flags.cc (liboctave_pzo_flag): Delete. |
|
1901 |
2829
|
1902 * mx-op-defs.h: New file for operator definitions. |
|
1903 * mx-cdm-cm.h, mx-cdm-cs.h, mx-cdm-dm.h, mx-cdm-m.h, mx-cdm-s.h, |
|
1904 mx-cm-cdm.h, mx-cm-dm.h, mx-cm-m.h, mx-cm-s.h, mx-cs-cdm.h, |
|
1905 mx-cs-dm.h, mx-cs-m.h, mx-dm-cdm.h, mx-dm-cm.h, mx-dm-cs.h, |
|
1906 mx-dm-m.h, mx-dm-s.h, mx-m-cdm.h, mx-m-cm.h, mx-m-cs.h, mx-m-dm.h, |
|
1907 mx-s-cdm.h, mx-s-cm.h, mx-s-dm.h, mx-cdm-cm.cc, mx-cdm-cs.cc, |
|
1908 mx-cdm-dm.cc, mx-cdm-m.cc, mx-cdm-s.cc, mx-cm-cdm.cc, mx-cm-dm.cc, |
|
1909 mx-cm-m.cc, mx-cm-s.cc, mx-cs-cdm.cc, mx-cs-dm.cc, mx-cs-m.cc, |
|
1910 mx-dm-cdm.cc, mx-dm-cm.cc, mx-dm-cs.cc, mx-dm-m.cc, mx-dm-s.cc, |
|
1911 mx-m-cdm.cc, mx-m-cm.cc, mx-m-cs.cc, mx-m-dm.cc, mx-s-cdm.cc, |
|
1912 mx-s-cm.cc, mx-s-dm.cc: |
|
1913 New files for mixed-type operations. |
|
1914 * Makefiles.in: Add them to the appropriate lists. |
|
1915 |
|
1916 * mx-inlines.cc: Add bool by bool EQ ops. |
|
1917 |
|
1918 * idx-vector.h, idx-vector.cc: Add constructors for bool and |
|
1919 boolMatrix types. |
|
1920 (idx_vector::maybe_convert_one_zero_to_idx, |
|
1921 idx_vector::idx_vector_rep::maybe_convert_one_zero_to_idx): |
|
1922 Delete second arg, prefer_zero_one. Change all callers. |
|
1923 |
|
1924 * boolMatrix.h, boolMatrix.cc: New files. |
|
1925 * mx-base.h: Include boolMatrix.h here. |
|
1926 * mx-defs.h: Provide forward declaration for boolMatrix here. |
|
1927 |
|
1928 * chMatrix.h, chMatrix.cc: Delete unused junk. |
|
1929 |
|
1930 * dMatrix.h, CMatrix.h: Delete friend declarations for operator+, |
|
1931 operator-, operator*, product, and quotient functions. |
|
1932 Add constructor for boolMatrix type. |
|
1933 * dMatrix.cc, CMatrix.cc: Delete operator+, operator-, operator*, |
|
1934 product, and quotient functions. |
|
1935 |
|
1936 * CDiagMatrix.h: Delete friend declarations for operator+, |
|
1937 operator-, and product functions. |
|
1938 * CDiagMatrix.h: Delete operator+, operator-, and product functions. |
|
1939 |
|
1940 * Array-b.cc: Also instantiate 2d and 2d diagonal arrays. |
|
1941 |
2815
|
1942 Fri Mar 14 00:29:46 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1943 |
|
1944 * EIG.cc (EIG::hermitian_init (const ComplexMatrix&)): New function. |
|
1945 (EIG::init (const ComplexMatrix&)): Call it if arg is hermitian. |
|
1946 (EIG::symmetric_init (const Matrix&)): New function. |
|
1947 (EIG::init (const Matrix&)): Call it if arg is symmetric. |
|
1948 |
|
1949 * CMatrix.cc (ComplexMatrix::is_hermitian): New function. |
|
1950 |
|
1951 Thu Mar 13 17:04:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1952 |
|
1953 * Array2.cc (is_symmetric): New function. |
|
1954 * Array2.h (is_square): New function. |
|
1955 |
2811
|
1956 Wed Mar 12 16:59:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1957 |
|
1958 * Makefile.in (install-strip): New target. |
|
1959 |
2804
|
1960 Mon Mar 10 22:34:22 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1961 |
|
1962 * CmplxCHOL.cc, CmplxHESS.cc, CmplxLU.cc, CmplxQR.cc, |
|
1963 CmplxQRP.cc, CmplxSCHUR.cc, CmplxSVD.cc, EIG.cc, dbleCHOL.cc, |
|
1964 dbleHESS.cc, dbleLU.cc, dbleQR.cc, dbleQRP.cc, dbleSCHUR.cc, |
|
1965 dbleSVD.cc: Don't include mx-inlines.cc. |
|
1966 |
|
1967 * mx-inlines.cc: Abuse the preprocessor to eliminate lots of |
|
1968 duplicate code. |
|
1969 |
2800
|
1970 Sun Mar 9 03:44:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1971 |
2804
|
1972 * dbleQR.h (QR): Delete extra comma at end of list. |
|
1973 |
|
1974 * prog-args.cc (prog_args::getopt): Add missing const in cast. |
|
1975 |
|
1976 * dbleSVD.h (SVD::type): Delete extra comma at end of list. |
|
1977 |
|
1978 * idx-vector.h (idx_vector): Delete unnecessary idx_vector:: and |
|
1979 idx_vecotr_rep:: qualifiers. |
|
1980 |
|
1981 * Array.h (class Array): Delete unnecessary Array<T>:: qualifiers. |
|
1982 |
|
1983 * data-conv.h (save_type): Delete extra comma at end of list. |
|
1984 |
2800
|
1985 * CMatrix.cc, FEGrid.cc, Range.cc, dMatrix.cc, data-conv.cc, |
|
1986 dir-ops.cc, file-ops.h, idx-vector.cc, idx-vector.h, lo-ieee.cc, |
|
1987 lo-mappers.cc, oct-alloc.cc: Use `static_cast<T> (val)' instead of |
|
1988 old C-style `(T) val' casts. |
|
1989 |
2795
|
1990 Thu Mar 6 20:20:01 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
1991 |
|
1992 * dMatrix.cc (operator >>): Return if an error occurs instead of |
|
1993 just breaking out of the innermost loop. |
|
1994 * CMatrix.cc (operator >>): Likewise. |
|
1995 |
2779
|
1996 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775
|
1997 |
|
1998 * Version 2.0.5 released. |
|
1999 |
2767
|
2000 Fri Feb 28 20:11:23 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2001 |
|
2002 * CmplxQR.cc (ComplexQR::init): New function. |
|
2003 (ComplexQR::ComplexQR): Use it. Use initializer list too. |
|
2004 * CmplxQRP.cc (ComplexQRP::init): New function. |
|
2005 Get sizes right in all cases. |
|
2006 (ComplexQR::ComplexQRP): Use it. Use initializer list too. |
|
2007 |
|
2008 * dbleQR.cc (QR::init): New function. |
|
2009 (QR::QR): Use it. Use initializer list too. |
|
2010 * dbleQRP.cc (QRP::init): New function. |
|
2011 Get sizes right in all cases. |
|
2012 (QR::QRP): Use it. Use initializer list too. |
|
2013 |
2759
|
2014 Wed Feb 26 15:46:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2015 |
|
2016 * mach-info.cc (oct_mach_info::string_to_float_format): |
|
2017 Recognize "vaxg", not "vax_g". |
|
2018 |
2713
|
2019 Fri Feb 21 16:07:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2020 |
2714
|
2021 * Array2-idx.h (Array2<T>::maybe_delete_elements): Use correct |
|
2022 dimension in check for colon equivalent index. |
|
2023 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): A single-element |
|
2024 index whose value is 0 is also colon eqivalent for n == 1. |
|
2025 |
2713
|
2026 * lo-ieee.cc (octave_ieee_init): Reorder #ifdef stuff to put |
|
2027 system-specific tests first. |
|
2028 |
2709
|
2029 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2702
|
2030 |
|
2031 * Version 2.0.4 released. |
|
2032 |
|
2033 Wed Feb 19 09:42:30 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2034 |
|
2035 * lo-ieee.cc: D'oh, it's `extern "C"', not `#extern "C"'. |
|
2036 |
2693
|
2037 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2690
|
2038 |
|
2039 * Version 2.0.3 released. |
|
2040 |
2686
|
2041 Fri Feb 14 16:23:47 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2042 |
|
2043 * Makefile.in (bin-dist): Don't write empty strings to LIBRARIES. |
|
2044 |
2673
|
2045 Thu Feb 13 14:35:19 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2046 |
2676
|
2047 * Makefile.in (stamp-prereq): Depend on stamp-picdir. |
|
2048 (all): Don't depend on stamp-prereq or stamp-picdir. |
|
2049 (liboctave.a, stamp-shared): Do depend on stamp-prereq. |
|
2050 (stamp-picdir): Silence noise about making pic. |
|
2051 (stamp-shared): Use $(SH_LD) $(SH_LDFLAGS) instead of $(CXX) -shared. |
|
2052 |
2673
|
2053 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
2054 Fix typo in last change. |
|
2055 |
|
2056 * CColVector.cc (ComplexColumnVector::map (d_c_mapper)): |
|
2057 Convert from friend (moved from dColVector.cc). |
|
2058 * CMatrix.cc (ComplexMatrix::map (d_c_mapper)): |
|
2059 Likewise (moved from dMatrix.cc). |
|
2060 * CRowVector.cc (ComplexRowVector::map (d_c_mapper)): |
|
2061 Likewise (moved from dRowVector.cc). |
|
2062 |
|
2063 * dColVector.cc (ColumnVector::map (d_d_mapper)): Convert from friend. |
|
2064 * dMatrix.cc (Matrix::map (d_d_mapper)): Likewise. |
|
2065 * dRowVector.cc (RowVector::map (d_d_mapper)): Likewise. |
|
2066 * CColVector.cc (ComplexColumnVector::map (c_c_mapper)): Likewise. |
|
2067 * CMatrix.cc (ComplexMatrix::map (c_c_mapper)): Likewise. |
|
2068 * CRowVector.cc (ComplexRowVector::map (c_c_mapper)): Likewise. |
|
2069 |
|
2070 * dColVector.cc (ColumnVector::apply): Rename from map, return *this. |
|
2071 * dMatrix.cc (Matrix::apply): Likewise. |
|
2072 * dRowVector.cc (RowVector::apply): Likewise. |
|
2073 * CColVector.cc (ComplexColumnVector::apply): Likewise. |
|
2074 * CMatrix.cc (ComplexMatrix::apply): Likewise. |
|
2075 * CRowVector.cc (ComplexRowVector::apply): Likewise. |
|
2076 |
2668
|
2077 Tue Feb 11 19:44:28 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2078 |
|
2079 * lo-ieee.cc: Declare quiet_nan() and infinity(). |
|
2080 |
|
2081 Mon Feb 10 01:17:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2082 |
|
2083 * file-ops.cc (oct_unlink (const string&, string&)): |
|
2084 New two-arg version. |
|
2085 (oct_rmdir (const string&, string&)): New two-arg version. |
|
2086 (oct_mkdir (const string&, mode_t, string&)): New three-arg version. |
|
2087 (oct_mkfifo (const string&, mode_t, string&)): New three-arg version. |
|
2088 (oct_rename (const string&, const string&, string&)): |
|
2089 New three-arg version. |
|
2090 |
2663
|
2091 Fri Feb 7 13:15:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2092 |
|
2093 * idx-vector.h (idx_vector::orig_empty): New function. |
|
2094 |
|
2095 * Array2-idx.h (Array2<T>::index (idx_vector&, idx_vector&)): |
|
2096 Don't always resize to [](0x0) if one of the indices is empty or |
|
2097 zero. |
|
2098 |
2658
|
2099 Sun Feb 2 22:33:44 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2100 |
|
2101 * cmd-hist.cc (command_history::read): New arg, must_exist. |
|
2102 Set line_in_file here too. |
|
2103 (command_history::read_range): New arg, must_exist. |
|
2104 |
2651
|
2105 Fri Jan 31 09:21:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2106 |
|
2107 * f2c-main.c: Change C++-style comments to C-style comments. |
|
2108 |
2638
|
2109 Tue Jan 28 10:46:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2110 |
|
2111 * Makefile.in (install-inc): Create a relative symbolic link. |
|
2112 |
2634
|
2113 Mon Jan 27 15:52:27 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2114 |
|
2115 * Version 2.0.2 released. |
|
2116 |
2624
|
2117 Sat Jan 25 22:36:21 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2118 |
|
2119 * Makefile.in (bin-dist): New target. |
|
2120 |
2621
|
2121 Wed Jan 22 16:18:53 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2122 |
|
2123 * dbleSVD.cc (SVD::init): Work around apparent dgesvd() bug. |
|
2124 * CmplxSVD.cc (ComplexSVD::init): Work around apparent zgesvd() bug. |
|
2125 |
2613
|
2126 Mon Jan 20 18:44:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2127 |
|
2128 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
2129 If the number of columns is zero, also set the number of rows to zero. |
|
2130 (charMatrix::charMatrix (const char *)): Likewise. |
|
2131 |
2602
|
2132 Tue Jan 7 00:16:57 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2133 |
|
2134 * Version 2.0.1 released. |
|
2135 |
2601
|
2136 Sun Jan 5 12:07:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2137 |
|
2138 * dMatrix.cc (Matrix::read): Correctly compute the number of |
|
2139 columns for resizing when the number of rows is specified but the |
|
2140 number of columns is not. |
|
2141 |
2598
|
2142 Wed Dec 18 16:18:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2143 |
2599
|
2144 * Range.cc (operator -): New function. |
|
2145 |
2598
|
2146 * lo-ieee.cc: Include <nan.h> on all systems that have it. |
|
2147 |
2589
|
2148 Fri Dec 13 02:01:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2149 |
|
2150 * Array2-idx.h (assign): Delay resizing left hand side until we |
|
2151 know if the assignment conforms. |
|
2152 |
2583
|
2153 Tue Dec 10 01:43:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2154 |
|
2155 * Version 2.0 released. |
|
2156 |
2570
|
2157 Fri Dec 6 14:41:15 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2158 |
2575
|
2159 * Array2-idx.h (assign): If index is a colon, set number of |
|
2160 elements to the lhs dimension if the lhs dimension is greater than |
|
2161 zero. Otherwise, set it to the rhs dimension. |
|
2162 |
|
2163 * Version 1.94. |
|
2164 |
2570
|
2165 * Array2-idx.h (assign): Test for rhs scalar case first. |
|
2166 If index is colon, set number of elements to lhs dimension, not |
|
2167 rhs dimension. |
|
2168 |
2563
|
2169 Thu Dec 5 13:05:18 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2170 |
2566
|
2171 * sun-utils.h: Don't declare MAIN_ or MAIN__ here. |
|
2172 * sun-utils.cc: Delete. |
|
2173 * f2c-main.c: New file |
|
2174 |
|
2175 * Makefile.in: Fix file name lists. |
|
2176 |
2563
|
2177 * CMatrix.cc (lssolve): Don't redeclare retval, resize it. |
|
2178 |
2561
|
2179 Wed Dec 4 12:24:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2180 |
|
2181 * dMatrix.cc (Qzval): Don't try to use same memory three times. |
|
2182 Create result using Complex constructor, not multiplication. |
|
2183 Order elements as they are returned from Eispack. |
|
2184 |
2559
|
2185 Mon Dec 2 00:26:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2186 |
2560
|
2187 * lo-ieee.cc (octave_ieee_init): Kluge for octave_Inf on SCO. |
|
2188 Only include nan.h if SCO is defined. Define _IEEE before |
|
2189 including it and undefine it afterward. |
|
2190 [SCO] (isnan): Don't mistake Inf as NaN. |
|
2191 |
2559
|
2192 * Array-idx.h (assign): Only resize if assignment conforms. |
|
2193 |
2551
|
2194 Wed Nov 20 01:00:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2195 |
|
2196 * Makefile.in (INCLUDES): Delete lo-error.h. |
|
2197 * lo-error.h: Delete (moved to libcruft/misc). |
|
2198 |
|
2199 * Version 1.93. |
|
2200 |
2546
|
2201 Tue Nov 19 23:07:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2202 |
2549
|
2203 * oct-glob.cc (glob_match::match): Don't expect our flag values to |
|
2204 be the same as they are in fnmatch.h. |
|
2205 |
2546
|
2206 * f77-fcn.c, f77-fcn.h: Move to libcruft/misc directory. |
|
2207 |
|
2208 * Makefile.in (INCLUDES): Delete f77-fcn.h. |
|
2209 (SOURCES): Delete f77-fcn.c. |
|
2210 |
2522
|
2211 Fri Nov 15 13:47:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2212 |
|
2213 * lo-ieee.h: [SCO]: Declare isinf and isnan. |
|
2214 |
2512
|
2215 Thu Nov 14 00:06:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2216 |
|
2217 * Version 1.92. |
|
2218 |
2508
|
2219 Wed Nov 13 11:19:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2220 |
2512
|
2221 * cmd-hist.cc (command_history::add): Ignore empty input lines, or |
|
2222 lines that have only carriage return or newline. |
|
2223 |
2508
|
2224 * lo-ieee.cc (isnan, isinf): Provide functions for SCO. |
|
2225 |
2500
|
2226 Tue Nov 12 11:11:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2227 |
|
2228 * idx-vector.cc (idx_is_inf_or_nan): New function. |
|
2229 (IDX_VEC_REP::idx_vector_rep): Use it. |
|
2230 |
2493
|
2231 Sun Nov 10 17:09:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2232 |
|
2233 * str-vec.h, str-vec.cc: Add constructors to make string vectors |
|
2234 from vectors of C strings. |
|
2235 |
|
2236 * oct-glob.h, oct-glob.cc (glob_match): Allow pat to be a string |
|
2237 vector. |
|
2238 (glob_match::match): Allow match string to be a string vector. |
|
2239 (glob_match::glob): New function. |
|
2240 |
|
2241 * chMatrix.cc (charMatrix::row_as_string): New arg, strip_ws. |
|
2242 |
|
2243 * Array-b.cc: New file. |
|
2244 * Makefile.in (TI_SRC): Add it to the list. |
|
2245 |
2492
|
2246 Fri Nov 8 18:09:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2247 |
|
2248 * file-ops.cc: Change #include "" to #include <> for safe-lstat.h |
|
2249 and safe-stat.h, to avoid getting them from $srcdir when we really |
|
2250 want the version from the build directory. (Maybe this should be |
|
2251 done for all the include files, not just those that are |
|
2252 auto-generated? Hmm.) |
|
2253 |
2481
|
2254 Thu Nov 7 10:45:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2255 |
2482
|
2256 * Version 1.91. |
|
2257 |
2481
|
2258 * Array3.cc (Array3<T>::resize): Make it work. |
|
2259 |
|
2260 Wed Nov 6 22:44:33 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2261 |
|
2262 * oct-alloc.h, oct-alloc.cc: New files. |
|
2263 * Makefile.in: Add them to the lists. |
|
2264 |
|
2265 Mon Nov 4 21:49:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2266 |
|
2267 * dbleQRP.cc (QRP::QRP): Don't pass tmp data to unsafe constructor. |
|
2268 * CmplxQRP.cc (ComplexQRP::ComplexQRP): Ditto. |
|
2269 |
2466
|
2270 Sun Nov 3 15:45:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2271 |
|
2272 * file-ops.cc (file_stat::is_blk, file_stat::is_chr, |
|
2273 file_stat::is_dir, file_stat::is_fifo, file_stat::is_lnk, |
|
2274 file_stat::is_reg, file_stat::is_sock): Just return false if the |
|
2275 underlying macro is not defined. |
|
2276 |
|
2277 * oct-math.h (lgamma, gamma): Delete declarations. |
|
2278 (asinh, acosh, atanh, erf, erfc): Declare arg types too. |
|
2279 Protect declarations with #ifdef HAVE_*. |
|
2280 |
2440
|
2281 Wed Oct 30 11:42:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2282 |
2452
|
2283 * Version 1.90. |
|
2284 |
|
2285 * Makefile.in (DISTFILES): Add ChangeLog. |
|
2286 |
2444
|
2287 * cmd-hist.cc: Only include fcntl.h if HAVE_FCNTL_H. |
|
2288 |
|
2289 * Matrix-ext.cc: Include <cfloat>, not <float.h>. |
|
2290 |
2443
|
2291 * CMatrix.cc, cmd-hist.cc, file-ops.cc, file-ops.h, filemode.c, |
2444
|
2292 mkdir.c, rename.c, rmdir.c, safe-xstat.cin, statdefs.h, sysdir.h, |
|
2293 tempname.c, utils.cc: Only include sys/types.h if HAVE_SYS_TYPES_H. |
2443
|
2294 |
2440
|
2295 * Array3.h (T Array3<T>::checkelem): Return T() for bogus value, |
|
2296 since that is now accepatble syntax, even for built-in types. |
|
2297 * Array2.h (T Array2<T>::checkelem): Likewise |
|
2298 |
2433
|
2299 Sat Oct 26 23:37:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2300 |
|
2301 * file-ops.cc (mkfifo) [! HAVE_MKFIFO]: Just print an error |
|
2302 message and return -1. |
|
2303 |
2428
|
2304 Fri Oct 25 01:24:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2305 |
2431
|
2306 * str-vec.h (str_vec_compare): Declare args as const void *, then |
|
2307 cast them to const string * in the body of the function. |
|
2308 |
|
2309 * file-ops.cc (file_stat::mode_as_string): Explicitly construct |
|
2310 string from buf. |
|
2311 |
2428
|
2312 * Array3.h (Array3::checkelem): Tag bogus return value with |
|
2313 GCC_ATTRIBUTE_UNUSED. |
|
2314 * Array2.h (Array2::checkelem): Likewise. |
|
2315 |
2424
|
2316 Thu Oct 24 19:40:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2317 |
|
2318 * Quad.h (Quad): Define virtual destructor. |
|
2319 |
2408
|
2320 Tue Oct 15 11:34:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2321 |
|
2322 * CMatrix.cc (ComplexMatrix::all_elements_are_real): new function. |
|
2323 |
2401
|
2324 Sun Oct 13 11:19:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2325 |
|
2326 * sun-utils.h: Conditionally declare MAIN__ too. Declare MAIN_ |
|
2327 and MAIN__ extern "C". |
|
2328 * sun-utils.cc: Include sun-utils.h here. Delete extern "C" stuff. |
|
2329 |
2391
|
2330 Sat Oct 12 12:40:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2331 |
|
2332 * MArray-misc.cc: New file. |
|
2333 * Makefile.in (MATRIX_SRC): Add it to the list. |
|
2334 |
|
2335 * mx-inlines.cc (equal): Return bool, not int. |
|
2336 |
|
2337 * idx-vector.h (idx_vector (double)): New constructor. |
|
2338 |
|
2339 * chMatrix.h, chMatrix.cc, CMatrix.h, CMatrix.cc, dMatrix.h, |
|
2340 dMatrix.cc, dDiagMatrix.h, dDiagMatrix.cc, dRowVector.h, |
|
2341 dRowVector.cc, dColVector.h, dColVector.cc, CColVector.h, |
|
2342 CColVector.cc, CDiagMatrix.h, CDiagMatrix.cc, CRowVector.h, |
|
2343 CRowVector.cc: Logical operators return bool, not int. |
|
2344 |
|
2345 * CMatrix.h, CMatrix.cc (ComplexMatrix::any_element_is_inf_or_nan): |
|
2346 New function. |
|
2347 |
|
2348 * dMatrix.h, dMatrix.cc (Matrix::any_element_is_negative, |
|
2349 Matrix::any_element_is_inf_or_nan, Matrix::abs, |
|
2350 Matrix::all_elements_are_inf_or_nan): New functions. |
|
2351 |
|
2352 * Range.h, Range.cc (Range::all_elements_are_ints): New function. |
|
2353 |
|
2354 * MArray.cc, MArray2.cc, MDiagArray2.cc: Call gripe_nonconformant |
|
2355 for errors. Simplify macros by converting FCN to string for error |
|
2356 messages. |
|
2357 |
|
2358 * Array-idx.h (Array<T>::index): New function. Don't call |
|
2359 clear_index() here. |
|
2360 (Array<T>::value): Call it, do call clear_index() here. |
|
2361 * Array2-idx.h (Array<T>::value, Array<T>::index): Likewise, for |
|
2362 one and two arg index functions. |
|
2363 |
|
2364 Tue Sep 17 21:21:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2365 |
|
2366 * DAEFunc.h: Delete #pragma interface since there is no longer a |
|
2367 separate implementation file. |
|
2368 |
2354
|
2369 Tue Aug 20 17:38:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2370 |
2358
|
2371 * Makefile.in (stamp-picdir): Only create a pic subdirectory if |
|
2372 SHARED_LIBS is true AND CPICFLAG or CXXPICFLAG is not empty. |
|
2373 |
2356
|
2374 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Rename arg sort to |
|
2375 sort_uniq. If sort_uniq is nonzero, sort the elements and make |
|
2376 them uniq. |
|
2377 |
2354
|
2378 * CMatrix.cc (ComplexMatrix::row_max, ComplexMatrix::row_min, |
|
2379 ComplexMatrix::column_max, ComplexMatrix::column_min): |
|
2380 Rewrite. Also return index as a reference arg. |
|
2381 (ComplexMatrix::row_max_loc, ComplexMatrix::row_min_loc, |
|
2382 ComplexMatrix::column_max_loc, ComplexMatrix::column_min_loc): |
|
2383 Delete. |
|
2384 |
|
2385 * dMatrix.cc (Matrix::row_max, Matrix::row_min, |
|
2386 Matrix::column_max, Matrix::column_min): |
|
2387 Rewrite. Also return index as a reference arg. |
|
2388 (Matrix::row_max_loc, Matrix::row_min_loc, |
|
2389 Matrix::column_max_loc, Matrix::column_min_loc): Delete. |
|
2390 |
|
2391 Fri Aug 9 05:01:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2392 |
|
2393 * dMatrix.cc (Matrix::row_min, Matrix::row_min_loc, |
|
2394 Matrix::row_max, Matrix::row_max_loc, Matrix::column_min, |
|
2395 Matrix::column_min_loc, Matrix::column_max, |
|
2396 Matrix::column_max_loc): Ignore leading NaNs. |
|
2397 * CMatrix.cc (ComplexMatrix::row_min, ComplexMatrix::row_min_loc, |
|
2398 ComplexMatrix::row_max, ComplexMatrix::row_max_loc, |
|
2399 ComplexMatrix::column_min, ComplexMatrix::column_min_loc, |
|
2400 ComplexMatrix::column_max, ComplexMatrix::column_max_loc): Ignore |
|
2401 leading NaNs. |
|
2402 |
2352
|
2403 Thu Aug 8 16:04:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2404 |
|
2405 * QPSOL.cc (QPSOL::do_minimize): Insert linear constraint bounds |
|
2406 starting at n, not 0. |
|
2407 |
2349
|
2408 Sat Jul 27 02:54:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2409 |
|
2410 * dMatrix.cc (Matrix::Matrix (const RowVector&), |
|
2411 Matrix::Matrix (const ColumnVector&)): New constructors. |
|
2412 |
|
2413 * CMatrix.cc (ComplexMatrix::ComplexMatrix (const RowVector&), |
|
2414 ComplexMatrix::ComplexMatrix (const ColumnVector&), |
|
2415 ComplexMatrix::ComplexMatrix (const ComplexRowVector&), |
|
2416 ComplexMatrix::ComplexMatrix (const ComplexColumnVector&)): |
|
2417 New constructors. |
|
2418 |
|
2419 * chMatrix.cc (charMatrix::charMatrix (const string_vector&)): |
|
2420 New constructor. |
|
2421 |
2343
|
2422 Wed Jul 24 16:39:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2423 |
|
2424 * LSODE.cc (do_integrate): Check to make sure that the state and |
|
2425 derivative vectors are the same size. |
2344
|
2426 * DASSL.cc (do_integrate): Likewise. |
2343
|
2427 |
2330
|
2428 Sun Jul 14 17:30:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2429 |
|
2430 * dMatrix.cc (Matrix::read, Matrix::write): Convert to use |
|
2431 iostreams and handler data format conversions. Delete old methods |
|
2432 that used stdio. |
|
2433 |
|
2434 * data-conv.h, data-conv.cc (oct_data_conv): New class. |
|
2435 |
|
2436 Fri Jul 12 13:52:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2437 |
|
2438 * mach-info.h: Rename from float-fmt.h. |
|
2439 * mach-info.cc: Rename from float-fmt.cc. |
|
2440 Handle machine information using a singlton class. |
|
2441 * Makefile.in: Update appropriate lists. |
|
2442 |
|
2443 Tue Jul 9 11:49:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2444 |
|
2445 * Array-flags.cc: Provide definitions for the flags even if |
|
2446 OCTAVE_SOURCE is not defined. |
|
2447 |
|
2448 * Array.h, Array2.h, Array3.h: BOUNDS_CHECKING now affects |
|
2449 operator(), not elem(). |
|
2450 * Array3.h: Move indexing methods here from Array3.cc. |
|
2451 |
|
2452 Mon Jun 24 02:30:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2453 |
|
2454 * Array3.cc (checkelem): Fix typo in call to Array2<T>::elem(). |
|
2455 |
|
2456 * Makefile.in (install-lib): Use INSTALL_PROGRAM instead of |
|
2457 INSTALL_DATA for shared libs. |
|
2458 |
|
2459 Thu Jun 6 09:59:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2460 |
|
2461 * Quad.cc: Include lo-error.h here too. |
|
2462 |
|
2463 Mon May 27 12:41:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2464 |
|
2465 * file-ops.h: Include sys/types.h here. |
|
2466 |
|
2467 Wed May 22 00:20:24 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2468 |
|
2469 * chMatrix.cc (charMatrix::transpose): Provide definition. |
|
2470 |
|
2471 * Array-idx.h (maybe_delete_elements): Correctly compute number of |
|
2472 elements in result. |
|
2473 * Array2-idx.h (maybe_delete_elements): Likewise for number of |
|
2474 rows and columns in result. |
|
2475 |
|
2476 Tue May 21 23:46:09 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2477 |
|
2478 * dbleQR.cc (QR::QR): Don't create result from to-be-deleted data. |
|
2479 * CmplxQR.cc (ComplexQR::ComplexQR): Likewise. |
|
2480 |
|
2481 Fri May 17 03:06:02 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2482 |
|
2483 * Makefile.in (install-inc): Install in octincludedir, not includedir. |
|
2484 |
|
2485 Sun May 12 03:40:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2486 |
|
2487 * Makefile.in (uninstall): Also delete shared library. |
|
2488 Split install into install-libs and install-includes. |
|
2489 (install-inc): If linkdir is a directory, leave it alone. |
|
2490 |
|
2491 * sun-utils.cc (MAIN__): Define for Linux/ELF systems. |
|
2492 |
|
2493 Thu May 2 20:19:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2494 |
|
2495 * Array-idx.h (assign): Handle A(:) = X for A undefined or empty. |
|
2496 * Array2-idx.h (assign): Likewise. |
|
2497 |
|
2498 Tue Apr 30 05:43:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2499 |
|
2500 * Array2.cc (Array2<T>::range_error): New functions. |
|
2501 |
|
2502 * Array.h (class Array<T>): elem() and operator() are now |
|
2503 equivalent, and do bounds checking by default. |
|
2504 * Array2.cc (class Array2<T>): Likewise. |
|
2505 |
|
2506 Sat Apr 6 21:26:11 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2507 |
|
2508 * Makefile.in (maintainer-clean, distclean): Also delete |
|
2509 stamp-picdir, stamp-shared, and pic directory. |
|
2510 (stamp-prereq): New target. |
|
2511 |
|
2512 Fri Mar 29 13:44:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2513 |
|
2514 * NPSOL.h (NPSOL_options::set_option (const char *, int)): |
|
2515 New function. |
|
2516 |
|
2517 * Array.h, Array.cc (Array<T>::range_error ()): New functions. |
|
2518 * Array.h (Array<T>::checkelem): Use them. |
|
2519 |
|
2520 * base-lu.h, base-lu.cc: Parameterize based on types of matrix |
|
2521 elements too. |
|
2522 * dbleLU.h, dbleLU.cc, CmplxLU.h, CmplxLU.cc: Change to match. |
|
2523 |
|
2524 * MDiagArray2.h (MDiagArray2 (const MArray<T>& a)): Delete. |
|
2525 |
|
2526 * Makefile.in (distclean): Delete so_locations, which is created |
|
2527 on DEC Alpha systems. |
|
2528 |
|
2529 Sat Mar 23 04:02:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2530 |
|
2531 * Array.h (HEAVYWEIGHT_INDEXING): Do define this here if it is not |
|
2532 already defined. |
|
2533 |
|
2534 Fri Mar 22 23:53:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2535 |
|
2536 * pathsearch.cc: Include config.h. |
|
2537 |
|
2538 Wed Mar 20 04:54:03 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2539 |
|
2540 * Array2-idx.h (assign (Array2<LT>&, const Array2<RT>&)): Don't |
|
2541 allow M(I, J) = scalar if I or J is empty. |
|
2542 |
|
2543 * Array-idx.h: Delete Array2 and Array3 code (now in Array2-idx.h |
|
2544 and Array3-idx.h). |
|
2545 |
|
2546 Thu Mar 7 10:20:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2547 |
|
2548 * lo-error.h: Make comments C friendly. |
|
2549 |
|
2550 Sun Mar 3 14:04:32 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2551 |
|
2552 * Array2.h (make_unique): Move all indexing functions here. |
|
2553 * Array2.cc: From here. |
|
2554 |
|
2555 * Array.h, Array2.h (NO_BOUNDS_CHECKING): New macro to control |
|
2556 whether operator() calls elem or checkelem. |
|
2557 |
|
2558 * Array.h (make_unique): New private function. |
|
2559 Move all indexing functions here. |
|
2560 * Array.cc: From here. |
|
2561 |
|
2562 * pathsearch.cc (dir_path::find_all): Index tmp, don't dereference |
|
2563 it too. |
|
2564 |
|
2565 * Array-d.cc, Array-ch.cc, Array-C.cc, Array-s.cc, Array-str.cc, |
|
2566 Array-i.cc, MArray-i.cc, MArray-s.cc, MArray-d.cc, MArray-ch.cc, |
|
2567 MArray-C.cc: Include config.h. |
|
2568 |
|
2569 * Array.h, Array2.h, DiagArray2.h, Array3.h: |
|
2570 Don't define HEAVYWEIGHT_INDEXING here. |
|
2571 |
|
2572 Sat Mar 2 18:39:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2573 |
|
2574 * base-lu.h, base-lu.cc: New files. |
|
2575 * Makefile.in: Add them to the appropriate lists. |
|
2576 * dbleLU.h, dbleLU.cc, CmplxLU.h, Cmplx.cc: Derive from base_lu. |
|
2577 |
|
2578 Fri Mar 1 08:30:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2579 |
|
2580 * Array2.h, Array3.h, DiagArray2.h: New files, extracted from Array.h |
|
2581 * Array2-idx.h, Array3-idx.h: New files, extracted from Array-idx.h |
|
2582 * Array2.cc, Array3.cc, DiagArray2.cc: New files, from Array.cc. |
|
2583 * MArray2.h, MDiagArray2.h: New files, extracted from MArray.h. |
|
2584 * MArray2.cc, MDiagArray2.cc, MArray-defs.h: New files, from MArray.cc. |
|
2585 |
|
2586 * MArray.h (INSTANTIATE_MARRAY_FRIENDS): New macro. |
|
2587 (INSTANTIATE_MARRAY2_FRIENDS): Likewise. |
|
2588 (INSTANTIATE_MDIAGARRAY_FRIENDS): Likewise. |
|
2589 * MArray-C.cc, MArray-ch.cc, MArray-c.cc, MArray-i.cc, MArray-s.cc: |
|
2590 Simplify using new macros. |
|
2591 |
|
2592 Mon Feb 26 03:04:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2593 |
|
2594 * Makefile.in (install): If $(includedir) ends in version string, |
|
2595 make link to name that does not include version info. |
|
2596 |
|
2597 * lo-ieee.cc: Include <cmath> here. |
|
2598 |
|
2599 Fri Feb 16 20:52:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2600 |
|
2601 * lo-ieee.cc, lo-ieee.h: New files. |
|
2602 * lo-mappers.cc, lo-mappers.h: New files. |
|
2603 * lo-utils.cc, lo-utils.h: New files. |
|
2604 * Makefile.in: Add them to the appropriate lists. |
|
2605 |
|
2606 Thu Feb 15 22:02:17 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2607 |
|
2608 * dMatrix.cc (all_integers, too_large_for_float): New functions. |
|
2609 * CMatrix.cc (all_integers, too_large_for_float): New functions. |
|
2610 |
|
2611 * byte-swap.h, data-conv.h, data-conv.cc, float-fmt.h, |
|
2612 float-fmt.cc: New files. |
|
2613 * Makefile.in: Include them in the appropriate lists. |
|
2614 |
|
2615 Wed Feb 14 01:49:47 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2616 |
|
2617 * dMatrix.cc (Qzval): New function. |
|
2618 |
|
2619 Tue Feb 13 12:41:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2620 |
|
2621 * NPSOL.cc (NPSOL_options::set_option): Arg key is now string, not |
|
2622 char*. |
|
2623 |
|
2624 * DASSL.h, DASSL.cc: Do better management of temporary workspace. |
|
2625 Use F77_XFCN to call Fortran subroutine. |
|
2626 * dColVector.cc, CColVector.cc: Likewise. |
|
2627 * dRowVector.cc, CRowVector.cc: Likewise. |
|
2628 * NPSOL.h, NPSOL.cc: Likewise. |
|
2629 * CmplxCHOL.cc: Likewise. |
|
2630 * dbleCHOL.cc: Likewise. |
|
2631 * CMatrix.cc: Likewise. |
|
2632 * dMatrix.cc: Likewise. |
|
2633 * QPSOL.cc: Likewise. |
|
2634 * LSODE.cc: Likewise. |
|
2635 |
|
2636 Sun Feb 11 14:14:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2637 |
|
2638 * dbleHESS.cc (HESS::init): Dimension of tau is n-1, not n+1. |
|
2639 |
|
2640 * dbleSCHUR.h, dbleSCHUR.cc: Do better management of temporary |
|
2641 workspace. Use F77_XFCN to call Fortran subroutine. |
|
2642 * CmplxAEPBAL.h, CmplxAEPBAL.cc: Likewise. |
|
2643 * CmplxSCHUR.h, CmplxSCHUR.cc: Likewise. |
|
2644 * dbleGEPBAL.h, dbleGEPBAL.cc: Likewise. |
|
2645 * dbleAEPBAL.h, dbleAEPBAL.cc: Likewise. |
|
2646 * CmplxHESS.h, CmplxHESS.cc: Likewise. |
|
2647 * CmplxSVD.h, CmplxSVD.cc: Likewise. |
|
2648 * dbleHESS.h, dbleHESS.cc: Likewise. |
|
2649 * dbleSVD.h, dbleSVD.cc: Likewise. |
|
2650 * EIG.h, EIG.cc; Likewise. |
|
2651 * CollocWt.cc: Likewise. |
|
2652 * NLEqn.cc: Likewise. |
|
2653 * Quad.cc: Likewise. |
|
2654 |
|
2655 Sat Feb 10 12:14:59 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2656 |
|
2657 * dbleLU.h, dbleLU.cc: Do better management of temporary workspace. |
|
2658 Use F77_XFCN to call Fortran subroutine. |
|
2659 * CmplxLU.h, CmplxLU.cc: Ditto. |
|
2660 * dbleQR.h, dbleQR.cc: Ditto. |
|
2661 * CmplxQR.h, CmplxQR.cc: Ditto. |
|
2662 * dbleQRP.h, dbleQRP.cc: Ditto. |
|
2663 * CmplxQRP.h, CmplxQRP.cc: Ditto. |
|
2664 |
|
2665 * dir-ops.h (dir_entry::dir): Declare as void*, not DIR*. |
|
2666 (struct DIR): delete forward declaration. |
|
2667 (dir_entry::operator = (const dir_entry$)): Protect against |
|
2668 copying same object. |
|
2669 * dir-ops.cc: Cast dir appropriately. |
|
2670 |
|
2671 Fri Feb 9 16:12:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2672 |
|
2673 * lo-error.cc: Moved to libcruft/misc. |
|
2674 * Makefile.in: Delete it from the list. |
|
2675 |
|
2676 * f77-fcn.c (f77_context, f77_exception_encountered): Delete |
|
2677 definitions (they have been moved to libcruft/misc/f77-extern.cc). |
|
2678 |
|
2679 * Array-flags.h: New file. |
|
2680 * Array-idx.h: Include it here. |
|
2681 * Makefile.in (MATRIX_INC): Add it to the list. |
|
2682 |
|
2683 * Array-flags.cc: Renamed from Array-ext.cc. |
|
2684 (liboctave_dfi_flag): Renamed from dfi_flag. |
|
2685 (liboctave_pcv_flag): Renamed from pcv_flag. |
|
2686 (liboctave_pzo_flag): Renamed from pzo_flag. |
|
2687 (liboctave_rre_flag): Renamed from rre_flag. |
|
2688 * Array-idx.h: Change all uses of dfi_flag, etc. |
|
2689 * Makefile.in (MATRIX_SRC): Change file name here too. |
|
2690 |
|
2691 * Makefile.in (LIBOCTAVE_LFLAGS, LIBOCTAVE_LIBS): New variables. |
|
2692 (stamp-shared): Use them here. |
|
2693 |
|
2694 Tue Feb 6 09:53:41 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2695 |
|
2696 * cmd-hist.cc (command_history::ignore_entries): Delete default |
|
2697 argument value. |
|
2698 |
|
2699 Mon Feb 5 12:07:50 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2700 |
|
2701 * CmplxAEPBAL.h, CmplxCHOL.h, CmplxDET.h, CmplxHESS.h, CmplxLU.h, |
|
2702 CmplxQR.h, CmplxQRP.h, CmplxSCHUR.h, CmplxSVD.h, dbleAEPBAL.h, |
|
2703 dbleCHOL.h, dbleDET.h, dbleGEPBAL.h, dbleHESS.h, dbleLU.h, |
|
2704 dbleQR.h, dbleQRP.h, dbleSCHUR.h, dbleSVD.h: |
|
2705 Clean up constructors, assigment operator. |
|
2706 |
|
2707 Sun Feb 4 03:12:04 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2708 |
|
2709 * NPSOL.cc (do_minimize): Use F77_XFCN to call npsol. |
|
2710 Check f77_exception_encountered on return. |
|
2711 |
|
2712 * f77-fcn.c (f77_exception_encountered): New variable. |
|
2713 (F77_XFCN): Set it. |
|
2714 * f77-fcn.h: Provide declaration. |
|
2715 |
|
2716 * QPSOL.h (QPSOL_options::set_options): Renamed from copy(). |
|
2717 |
|
2718 * NPSOL.h (NPSOL_options::set_options): Renamed from copy(). |
|
2719 |
|
2720 * NLEqn.h (NLEqn_options::set_options): New function. |
|
2721 * Quad.h (Quad_options::set_options): Likewise. |
|
2722 |
|
2723 * LP.h (class LP): Add accessors for LP data. |
|
2724 |
|
2725 * NLEqn.h (NLEqn::n): Delete. |
|
2726 |
|
2727 * NLEqn.h (class NLEqn::n): Likewise. |
|
2728 |
|
2729 * NLP.h (class NLP): Add accessors for NLP data. |
|
2730 |
|
2731 * NPSOL.h (class NPSOL_options): Move constructors, set, and |
|
2732 access functions here. |
|
2733 * NPSOL.cc.cc: From here. |
|
2734 |
|
2735 * QLD.h (class QLD): Add destructor definition. |
|
2736 * Objective.h (class Objective): Likewise. |
|
2737 * ODEFunc.h (class ODEFunc): Likewise. |
|
2738 * NLFunc.h (class NLFunc): Likewise. |
|
2739 * NLEqn.h (class NLEqn): Likewise. |
|
2740 * NLConst.h (class NLConst): Likewise. |
|
2741 * LinConst.h (class LinConst): Likewise. |
|
2742 * LSODE.h (class LSODE_options): Likewise. |
|
2743 * CollocWt.h (class CollocWt): Likewise. |
|
2744 * Bounds.h (class Bounds): Likewise. |
|
2745 |
|
2746 * QLD.cc (QLD::set_default_options): Delete. |
|
2747 |
|
2748 * QP.h (QP): Add accessors for QP data. |
|
2749 Add copy constructor, operator =, and destructor definitions. |
|
2750 |
|
2751 * Range.h, Quad.h, QP.h, QLD.h, Objective.h, NLP.h, NLFunc.h, |
|
2752 NLConst.h, LinConst.h, LSODE.h, LP.h, FEGrid.h, EIG.h, DASSL.h, |
|
2753 DAEFunc.h, CollocWt.h, Bounds.h: |
|
2754 Clean up constructors, assigment operator. |
|
2755 |
|
2756 * dRowVector.cc (RowVector::transpose): Use magic of reference |
|
2757 counting to avoid duplicating the data immediately. |
|
2758 * dColVector.cc (ColumnVector::transpose): Likewise. |
|
2759 * CRowVector.cc (ComplexrowVector::transpose): Likewise. |
|
2760 * CColVector.cc (ComplexColumnVector::transpose): Likewise. |
|
2761 |
|
2762 Sat Feb 3 01:02:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2763 |
|
2764 * prog-args.h (prog_args::option_argument): New enum. |
|
2765 |
|
2766 * f77-fcn.h: Rename from f77-uscore.h. |
|
2767 (F77_XFCN_ERROR, F77_XFCN): New macros. |
|
2768 * f77-fcn.c: New file. |
|
2769 * Makefile.in (SOURCES): Add it to the list. |
|
2770 |
|
2771 * ODEFunc.h: Clean up. |
|
2772 |
|
2773 * DASSL.cc, DASSL.h: New files. |
|
2774 * Makefile.in: Add them to the appropriate lists. |
|
2775 |
|
2776 * LSODE.cc, LSODE.h: New files. |
|
2777 * Makefile.in: Add them to the appropriate lists. |
|
2778 |
|
2779 * ODE.cc: Delete. |
|
2780 * Makefile.in (SOURCES): Remove from list. |
|
2781 |
|
2782 * base-de.h, DAE.cc: New files. |
|
2783 * Makefile.in: Add them to the appropriate lists. |
|
2784 * ODE.h: Only define interface for ODE classes. |
|
2785 * DAE.h: Only define interface for ODE classes. |
|
2786 |
|
2787 * LPsolve.cc (do_minimize): Print sorry not implemented message. |
|
2788 (LPsolve::set_default_options)): Delete |
|
2789 * LPsolve.h (class LPsolve): Add operator =, copy constructor, and |
|
2790 destructor. |
|
2791 |
|
2792 * LP.h (class LP): Add operator =, copy constructor, and destructor. |
|
2793 |
|
2794 * QPSOL.h (QPSOL::QPSOL (const QPSOL&)): New constructor. |
|
2795 (QPSOL::operator =): Call base class operator = instead of assuming |
|
2796 we know what to copy. |
|
2797 |
|
2798 * base-min.h (size): New function. |
|
2799 |
|
2800 * NLP.h (NLP::size): Delete. |
|
2801 (NLP::NLP (const NLP&)): New constructor. |
|
2802 (NLP::operator =): Call base class operator = instead of assuming |
|
2803 we know what to copy. |
|
2804 |
|
2805 * NPSOL.h, NPSOL.cc (NPSOL::option): Delete. |
|
2806 (class NPSOL): Add operator = and destructor. |
|
2807 |
|
2808 * NPSOL.h: Add NPSOL_options() to list of constructor initalizers. |
|
2809 |
|
2810 Fri Feb 2 22:52:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2811 |
|
2812 * Makefile.in (liboctave.a): Depend on $(PICOBJ). |
|
2813 |
|
2814 Wed Jan 31 05:29:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2815 |
|
2816 * dMatrix.cc (Givens, Sylvester, Matrix::expm): New functions. |
|
2817 * CMatrix.cc (Givens, Sylvester, ComplexMatrix::expm): Ditto. |
|
2818 |
|
2819 Mon Jan 29 00:00:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2820 |
|
2821 * prog-args.h, prog-args.cc: New files. |
|
2822 * Makefile.in: Add them to lists. |
|
2823 |
|
2824 * getopt.h, getopt.c, getopt1.c: New files. |
|
2825 * Makefile.in: Add them to the lists. |
|
2826 |
|
2827 * oct-term.h, oct-term.cc: New files. |
|
2828 * Makefile.in: Add them to the lists. |
|
2829 |
|
2830 * str-vec.cc: New file. |
|
2831 * Makefile.in (SOURCES): Add it to the list. |
|
2832 |
|
2833 * file-ops.cc (oct_tmpnam): Move here from src/utils.cc. |
|
2834 |
|
2835 * tempname.c, tempnam.c: Move here from src directory. |
|
2836 * Makefile.in: Add to lists. |
|
2837 |
|
2838 Sun Jan 28 23:06:19 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2839 |
|
2840 * cmd-hist.h, cmd-hist.cc: New files. |
|
2841 * Makefile.in: Add them to lists. |
|
2842 |
|
2843 Thu Jan 25 20:36:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2844 |
|
2845 * oct-glob.h, oct-glob.cc: New files. |
|
2846 * Makefile.in: Add them to lists. |
|
2847 |
|
2848 Wed Jan 24 01:55:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2849 |
|
2850 * pathsearch.h, pathsearch.cc: New files. |
|
2851 * Makefile.in: Add them to lists. |
|
2852 |
|
2853 * dir-ops.h, dir-ops.cc: New files. |
|
2854 * sysdir.h: Move here from src directory. |
|
2855 * Makefile.in: Add them to lists. |
|
2856 |
|
2857 * Array.h (Array::qsort): Return *this, not void. |
|
2858 * str-vec.h (string_vector::qsort): Likewise. |
|
2859 |
|
2860 * chMatrix.cc (row_as_string): Resize result to eliminate |
|
2861 unnecessary NULs. |
|
2862 |
|
2863 Tue Jan 23 00:40:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2864 |
|
2865 * safe-xstat.hin, safe-xstat.cin, statdefs.h, file-ops.h, |
|
2866 file-ops.cc, filemode.c, mkdir.c, rmdir.c, rename.c: |
|
2867 Files moved here from src directory. |
|
2868 * Makefile.in: Add them to lists. Include appropriate rules. |
|
2869 |
|
2870 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
2871 Use pointers, not references (this is C code!). |
|
2872 |
|
2873 * oct-math.h: New file. |
|
2874 * acosh.c, asinh.c, atanh.c, erf.c, erfc.c, gamma.c, lgamma.c: |
|
2875 Files moved here from src directory. |
|
2876 * Makefile.in: Add them to lists. |
|
2877 |
|
2878 Sun Jan 21 22:53:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2879 |
|
2880 * idx-vector.cc (make_uniq): Fix major brain-o. |
|
2881 |
|
2882 * CmplxSCHUR.h, CmplxSCHUR.cc, dbleSCHUR.h, dbleSCHUR.cc: |
|
2883 Convert to use string class instead of char*. |
|
2884 |
|
2885 * str-vec.h, Array-str.cc: New files. |
|
2886 |
|
2887 * Array.h (Array::qsort): New function. |
|
2888 |
|
2889 Fri Jan 12 01:45:10 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2890 |
|
2891 * Array.h: Nest ArrayRep class inside Array class. |
|
2892 Refer to ArrayRep, not ArrayRep<T>. |
|
2893 Move all ArrayRep functions inline. |
|
2894 Don't declare other Array classes as friends of ArrayRep. |
|
2895 * Array.cc: Delete ArrayRep functions. |
|
2896 * Array-idx.h: Refer to ArrayRep, not ArrayRep<T>. |
|
2897 |
|
2898 * Array-C.cc, Array-ch.cc, Array-d.cc, Array-i.cc, Array-s.cc: |
|
2899 Don't instantiate ArrayRep objects. |
|
2900 |
|
2901 Wed Jan 10 04:40:21 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2902 |
|
2903 * chMatrix.cc (charMatrix::charMatrix (const string&)): |
|
2904 New constructor. |
|
2905 |
|
2906 Tue Jan 9 04:44:56 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2907 |
|
2908 * dbleGEPBAL.cc (GEPBALANCE::init): Use string instead of char* |
|
2909 for balance_job arg. |
|
2910 * dbleAEPBAL.cc (AEPBALANCE::init): Likewise. |
|
2911 * CmplxAEPBAL.cc (ComplexAEPBALANCE::init): Likewise. |
|
2912 |
|
2913 * chMatrix.cc (row_as_string): Return string, not const char*. |
|
2914 |
|
2915 Mon Jan 8 03:20:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2916 |
|
2917 * Makefile.in (clean): If $(SHARED_LIBS), also remove shared libs. |
|
2918 |
|
2919 * chMatrix.cc (row_as_string): Undo previous change. |
|
2920 |
|
2921 Sun Jan 7 19:50:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2922 |
|
2923 * chMatrix.cc (row_as_string): Do memory management here. Caller |
|
2924 is expected to save string if necessary. |
|
2925 |
|
2926 Sat Jan 6 19:28:20 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2927 |
|
2928 * Array.h (class DiagArray): Enable nested Proxy class for all |
|
2929 platforms. |
|
2930 |
|
2931 * Array.cc (Array<T>::operator = (const Array<T>&)): If rep == |
|
2932 a.rep, don't mess with count. |
|
2933 * Array.h (Array2<T>& operator = (const Array2<T>&)): Likewise, |
|
2934 don't do anything if reps are the same. |
|
2935 (Array3<T>& operator = (const Array3<T>&) |
|
2936 |
|
2937 * Array.h (ArrayRep<T>::operator = (const ArrayRep<T>&)): |
|
2938 Declare private with no definition to prevent misuse. |
|
2939 |
|
2940 * Array.cc (Array2<T>::insert (const Array2<T>&, int, int)): |
|
2941 Get range check right. |
|
2942 * dMatrix.cc (Matrix::insert (const RowVector&, int, int)): Ditto. |
|
2943 (Matrix::insert (const ColumnVector&, int, int)): Ditto. |
|
2944 (Matrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
2945 * CMatrix.cc (ComplexMatrix::insert (const Matrix&, int, int)): Ditto. |
|
2946 (ComplexMatrix::insert (const RowVector&, int, int)): Ditto. |
|
2947 (ComplexMatrix::insert (const ColumnVector&, int, int)): Ditto. |
|
2948 (ComplexMatrix::insert (const DiagMatrix&, int, int)): Ditto. |
|
2949 (ComplexMatrix::insert (const ComplexRowVector&, int, int)): Ditto. |
|
2950 (ComplexMatrix::insert (const ComplexColumnVector&, int, int)): Ditto. |
|
2951 (ComplexMatrix::insert (const ComplexDiagMatrix&, int, int)): Ditto. |
|
2952 * dRowVector.cc (RowVector::insert (const RowVector&, int)): Ditto. |
|
2953 * dColVector.cc |
|
2954 (ColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
2955 * CRowVector.cc |
|
2956 (ComplexRowVector::insert (const RowVector&, int)): Ditto. |
|
2957 (ComplexRowVector::insert (const ComplexRowVector&, int)): Ditto. |
|
2958 * CColVector.cc |
|
2959 (ComplexColumnVector::insert (const ColumnVector&, int)): Ditto. |
|
2960 (ComplexColumnVector::insert (const ComplexColumnVector&, int)): Ditto. |
|
2961 |
|
2962 * dMatrix.cc (Matrix::insert (const DiagMatrix&, int, int)): |
|
2963 Also fill in zeros, not just the diagonal. |
|
2964 |
|
2965 * CDiagMatrix.cc (ComplexDiagMatrix::fill (double, int, int)): |
|
2966 Use END parameter properly. |
|
2967 (ComplexDiagMatrix::fill (const Complex&, int, int)): Ditto. |
|
2968 * dDiagMatrix.cc (DiagMatrix::fill (double, int, int)): Ditto. |
|
2969 |
|
2970 * Array.h (ArrayRep<T>::ArrayRep (void)): Set count to 1 here. |
|
2971 (ArrayRep<T>::ArrayRep (T *, int)): Likewise. |
|
2972 * Array.cc (ArrayRep<T>::ArrayRep (const ArrayRep<T>&)): |
|
2973 Don't copy count. Set it to 1. |
|
2974 (ArrayRep<T>::ArrayRep (int)): Set count to 1 here. |
|
2975 |
|
2976 * Array.h (Array<T>::Array (T *, int)): After constructing rep, |
|
2977 don't set rep->count to 1 here (now handled by ArrayRep |
|
2978 constructors). |
|
2979 (Array<T>::Array (void)): Ditto. |
|
2980 (Array<T>::Array (int)): Ditto. |
|
2981 (Array<T>::T& elem (int)): Ditto. |
|
2982 * Array-idx.h (Array<T>::maybe_delete_elements (idx_vector&)): Ditto. |
|
2983 (Array2<T>::maybe_delete_elements (idx_vector&, idx_vector&)): Ditto. |
|
2984 * Array.cc: (Array<T>::Array (int, const T&)): Ditto. |
|
2985 (Array<T>::resize (int)): Ditto. |
|
2986 (Array<T>::resize (int, const T&)) :Ditto. |
|
2987 (Array<T>::fortran_vec (void)): Ditto. |
|
2988 (Array2<T>::resize (int, int)): Ditto. |
|
2989 (Array2<T>::resize (int, int, const T&)): Ditto. |
|
2990 (DiagArray<T>::resize (int, int)): Ditto. |
|
2991 (DiagArray<T>::resize (int, int, const T&)): Ditto. |
|
2992 |
|
2993 Sun Dec 31 21:23:26 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
2994 |
|
2995 * Array-ch.cc: Rename from Array-c.cc. |
|
2996 * MArray-ch.cc: Rename from MArray-c.cc. |
|
2997 * chMatrix.cc: Rename from cMatrix.cc. |
|
2998 * chMatrix.h: Rename from cMatrix.h. |
|
2999 * Makefile.in (TI_SRC): Use new names here. |
|
3000 * mx-base.h: Likewise. |
|
3001 |
|
3002 Fri Dec 29 21:45:00 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3003 |
|
3004 * Makefile.in: Handle shared libraries. |
|
3005 |
|
3006 Thu Dec 28 14:18:34 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3007 |
|
3008 * CRowVector.cc (operator * (ComplexRowVector, ComplexMatrix)): |
|
3009 Correctly compute length of return value. Correct rows and |
|
3010 columns in zgemv call. |
|
3011 * dRowVector.cc (operator * (RowVector, Matrix)): Likewise. |
|
3012 |
|
3013 Tue Dec 26 00:37:57 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3014 |
|
3015 * Makefile.in (stamp-picdir): New target. |
|
3016 (all): Depend on it. |
|
3017 |
|
3018 Sun Dec 24 03:10:41 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3019 |
|
3020 * Makefile.in (INCLUDES): Remove QLD.h. |
|
3021 (SOURCES): Remove QLD.cc. |
|
3022 |
|
3023 Wed Dec 20 00:43:46 1995 John W. Eaton <jwe@bevo.che.wisc.edu> |
|
3024 |
|
3025 * dMatrix.cc (Matrix::inverse): New arg, force. |
|
3026 If force is nonzero, invert even if matrix is singular. |
|
3027 (ComplexMatrix::inverse): Likewise. |
|
3028 |
|
3029 * dRowVector.cc, mx-inlines.cc, dMatrix.cc, dDiagMatrix.cc, |
|
3030 dColVector.cc,MArray-C.cc, CmplxDET.cc, CRowVector.cc, CMatrix.cc, |
|
3031 CDiagMatrix.cc, CColVector.cc, Array-C.cc, CmplxDET.h, CMatrix.h: |
|
3032 Include "oct-cmplx.h" instead of <Complex.h>. |
|
3033 |
|
3034 * mx-defs.h: Include oct-cmplx.h in place of forward declaration |
|
3035 for class Complex. |
|
3036 |
|
3037 * oct-cmplx.h: New file. |
|
3038 * Makefile.in (INCLUDES): Add it to the list. |
|
3039 |
|
3040 * idx-vector.cc (IDX_VEC_REP::idx_vector_rep): Don't redeclare len. |
|
3041 (IDX_VEC_REP::maybe_convert_one_zero_to_idx): Don't redeclare count. |
|
3042 (IDX_VEC_REP::freeze): Don't redeclare max_val and min_val. |
|
3043 (intcmp, sort_data, make_uniq, copy_data, IDX_VEC_REP::print): |
|
3044 Avoid g++ bugs. |
|
3045 |
|
3046 Tue Nov 14 14:24:16 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3047 |
|
3048 * Array-idx.h (maybe_delete_elements): Give useful error message. |
|
3049 |
|
3050 * dbleSCHUR.cc, dbleSVD.cc: Include iostream.h. |
|
3051 |
|
3052 Mon Nov 13 08:35:07 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3053 |
|
3054 * CDiagMatrix.cc (inverse): Return retval, not *this. |
|
3055 * dDiagMatrix.cc (inverse): Use same method as for Complex case. |
|
3056 |
|
3057 Sat Nov 4 05:06:12 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3058 |
|
3059 * Array.h, Array.cc, Array-idx.h [HEAVYWEIGHT_INDEXING]: Keep |
|
3060 index vector object with Array, not ArrayRep. |
|
3061 |
|
3062 Fri Nov 3 06:52:38 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3063 |
|
3064 * Array-idx.h (assign (Array2<T>&, const Array2<T>&): Don't fail |
|
3065 if index is a colon and resizing is maybe needed. |
|
3066 |
|
3067 Tue Oct 31 17:40:01 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3068 |
|
3069 * idx-vector.cc (IDX_VEC_REP::is_colon_equiv): Don't return true |
|
3070 if we have a vector of 1's. |
|
3071 |
|
3072 * Array-idx.h (assign (Array2<LT>&, Array2<RT>&): If lhs has no |
|
3073 current orientation, require index and rhs to conform unless |
|
3074 do_fortran_indexing flag is set. |
|
3075 |
|
3076 Sun Oct 15 23:32:08 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3077 |
|
3078 * Array-d.cc, Array-C.cc, mx-base.h, mx-inlines.cc, dDiagMatrix.h, |
|
3079 CDiagMatrix.h, CMatrix.cc, CMatrix.h, dMatrix.h, mx-defs.h, |
|
3080 cMatrix.h, MArray.cc, MArray.h, MArray-i.cc, MArray-c.cc, |
|
3081 MArray-s.cc, Array.h, Array.cc, Array-c.cc, Array-i.cc, |
|
3082 Array-s.cc, cMatrix.cc, Array-idx.h, dMatrix.cc: |
|
3083 Massive changes to support additional data types. Only charMatrix |
|
3084 is currently used in Octave. |
|
3085 |
|
3086 Thu Oct 12 02:22:36 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3087 |
|
3088 * Array.cc (Array2<T>::insert (Array2<T>&, int, int): New function. |
|
3089 * CMatrix.cc (ComplexMatrix::insert (ComplexMatrix&, int, int): |
|
3090 Simply call Array2<Complex> version. |
|
3091 * dMatrix.cc (Matrix::insert (Matrix&, int, int): Similarly, just |
|
3092 call Array2<double> version. |
|
3093 |
|
3094 * Array-C.cc, Array-d.cc: Instantiate new assign functions too. |
|
3095 |
|
3096 * Array.h, Array.cc: Massive overhaul to support new way of |
|
3097 handling indexing. |
|
3098 * idx-vector.h, idx-vector.cc: Likewise. |
|
3099 * Array-ext.cc, Array-idx.h: New files. |
|
3100 * Makefile.in: Add them to the appropriate lists. |
|
3101 |
|
3102 Wed Oct 11 00:49:58 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3103 |
|
3104 * Range.cc (nelem_internal): Use tfloor here, not round. |
|
3105 |
|
3106 Sun Oct 8 18:21:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3107 |
|
3108 * idx-vector.h, idx-vector.cc: New files, moved from ../src. |
|
3109 * Makefile.in (SOURCES, INCLUDES): Include them in the lists. |
|
3110 |
|
3111 Sat Oct 7 19:07:02 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3112 |
|
3113 * CMatrix.cc (pseudo_inverse): Avoid bogus g++ warning. |
|
3114 |
|
3115 * Array.h: Move simple member functions here. |
|
3116 * Array.cc: From here. |
|
3117 |
|
3118 Fri Oct 6 00:36:04 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3119 |
|
3120 * Range.cc (tfloor, tceil, round): New static functions. |
|
3121 (Range::nelem_internal): Rewrite to use better method. |
|
3122 |
|
3123 * dbleSVD.h (SVD::type): New item, sigma_only. |
|
3124 (type_computed): New var. |
|
3125 * dbleSVD.cc (left_singular_matrix, right_singular_matrix): |
|
3126 Handle possible error condition. |
|
3127 (init): Allow for SVD::sigma_only, save type computed. |
|
3128 * CmplxSVD.cc (left_singular_matrix, right_singular_matrix): |
|
3129 Handle possible error condition. |
|
3130 (init): Allow for SVD::sigma_only, save type computed. |
|
3131 |
|
3132 Wed Oct 4 15:33:35 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3133 |
|
3134 * Nearly all non-matrix .h and .cc files: |
|
3135 Move short function bodies into class declarations for inlining. |
|
3136 Generally clean up. |
|
3137 |
|
3138 * base-min.h: New file. |
|
3139 * LP.h (class LP): Derive from base_minimizer. |
|
3140 * QLP.h (class QLP): Derive from base_minimizer. |
|
3141 * NLP.h (class NLP): Derive from base_minimizer. |
|
3142 * Makefile.in (INCLUDES): Add base-min.h to the list. |
|
3143 |
|
3144 * Makefile.in (SOURCES): Delete DAEFunc.cc, LP.cc, NLConst.cc, |
|
3145 NLFunc.cc, Objective.cc and QP.cc from list. |
|
3146 |
|
3147 Tue Sep 26 04:14:23 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3148 |
|
3149 * dbleSCHUR.cc (select_ana): Remove name of unused parameter. |
|
3150 (SCHUR::SCHUR): Delete unused parameter ord. |
|
3151 * CmplxSCHUR.h (ComplexSCHUR::CmplxSCHUR): Likewise. |
|
3152 |
|
3153 * CRowVector.cc |
|
3154 (ComplexRowVector::operator+ (const Complex&, const RowVector&), |
|
3155 (ComplexRowVector::operator- (const Complex&, const RowVector&), |
|
3156 (ComplexRowVector::operator* (const Complex&, const RowVector&), |
|
3157 (ComplexRowVector::operator/ (const Complex&, const RowVector&)): |
|
3158 Actually do something. |
|
3159 |
|
3160 * dMatrix.cc (Matrix::lssolve (ComplexMatrix&)): Use dummy vars. |
|
3161 (Matrix::lssolve (ComplexMatrix&, int&)): Likewise. |
|
3162 (Matrix::lssolve (ComplexMatrix&, int&, int&)): Likewise. |
|
3163 |
|
3164 * Quad.cc (Quad_options::Quad_options (double, double)): New function. |
|
3165 * (Quad::Quad (integrand_fcn, double, double): Properly initialize |
|
3166 tolerances. |
|
3167 |
|
3168 * DAE.cc (ddassl_f, ddassl_j): Remove names of unused parameters. |
|
3169 * LPsolve.cc (LPsolve::minimize): Likewise. |
|
3170 * NPSOL.cc (NPSOL::option, npsol_confun, npsol_objfun): Likewise. |
|
3171 * ODE.cc (lsode_f, lsode_j): Likewise. |
|
3172 * QPSOL.cc (qphess): Likewise. |
|
3173 |
|
3174 Fri Sep 22 04:14:51 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3175 |
|
3176 * dMatrix.cc: Include <cstring>. |
|
3177 |
|
3178 * Array.cc: Try harder to avoid warnings from gcc in functions |
|
3179 that return bogus values after calling the error handler. |
|
3180 |
|
3181 Thu Sep 14 00:56:00 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3182 |
|
3183 * Makefile.in: Use `ifndef omit_deps', not `ifndef $(omit_deps)'. |
|
3184 |
|
3185 * Makefile.in (TEMPLATE_SRC): Add Array-i.cc to the list. |
|
3186 |
|
3187 Tue Aug 22 00:41:06 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3188 |
|
3189 * DAE.cc (dassl_f): Add UNUSED attribute for unused parameters. |
|
3190 (dassl_j): Likewise. |
|
3191 |
|
3192 * DAE.cc, NLEqn.cc, NPSOL.cc, ODE.cc, CColVector.cc, CMatrix.cc, |
|
3193 dColVector.cc, dMatrix.cc, CmplxLU.cc, dbleLU.cc, QPSOL.cc, |
|
3194 Array.cc, CollocWt.cc, FEGrid.h, LinConst.h: |
|
3195 Update for change in for loop variable scope for gcc 2.7.0. |
|
3196 |
|
3197 Mon Aug 21 19:34:53 1995 John Eaton <jwe@bevo.che.wisc.edu> |
|
3198 |
|
3199 * Makefile.in: Only include dependency files if $(omit_deps) is |
|
3200 not set. |
|
3201 |
|
3202 Mon May 1 13:26:00 1995 John Eaton (jwe@bullwinkle.che.utexas.edu) |
|
3203 |
|
3204 * dbleSCHUR.h dbleSVD.h dbleQRP.h dbleQR.h dbleHESS.h dbleLU.h |
|
3205 dbleCHOL.h dbleGEPBAL.h dbleAEPBAL.h dbleDET.h dDiagMatrix.h |
|
3206 dColVector.h dMatrix.h dRowVector.h Quad.h Range.h QPSOL.h QLD.h |
|
3207 ODEFunc.h QP.h Objective.h NPSOL.h ODE.h NLEqn.h NLFunc.h |
|
3208 NLConst.h LinConst.h LPsolve.h LP.h FSQP.h FEGrid.h EIG.h |
|
3209 DAEFunc.h CollocWt.h DAE.h CmplxSVD.h CmplxQRP.h CmplxSCHUR.h |
|
3210 CmplxHESS.h CmplxDET.h CmplxLU.h CmplxQR.h CmplxCHOL.h |
|
3211 CmplxAEPBAL.h CRowVector.h CDiagMatrix.h Bounds.h CColVector.h |
|
3212 CMatrix.h dbleSCHUR.cc dbleSVD.cc dbleQRP.cc dbleQR.cc |
|
3213 dbleGEPBAL.cc dbleLU.cc dbleHESS.cc dbleDET.cc dbleCHOL.cc |
|
3214 dbleAEPBAL.cc dColVector.cc dRowVector.cc dMatrix.cc |
|
3215 dDiagMatrix.cc QPSOL.cc Range.cc Quad.cc QP.cc ODEFunc.cc QLD.cc |
|
3216 Objective.cc NLEqn.cc ODE.cc NPSOL.cc NLFunc.cc LPsolve.cc |
|
3217 NLConst.cc LinConst.cc FSQP.cc FEGrid.cc LP.cc DAE.cc EIG.cc |
|
3218 CollocWt.cc DAEFunc.cc CmplxSVD.cc CmplxSCHUR.cc CmplxQRP.cc |
|
3219 CmplxLU.cc CmplxQR.cc CmplxHESS.cc CmplxDET.cc CmplxCHOL.cc |
|
3220 CmplxAEPBAL.cc CRowVector.cc CColVector.cc CMatrix.cc |
|
3221 CDiagMatrix.cc Bounds.cc MArray.h MArray.cc Array.cc Array.h |
|
3222 NLP.h: Use pragma interface/implementation. Don't surround |
|
3223 contents in extern "C++". |
|
3224 * lo-error.h sun-utils.h: Don't surround contents in extern "C++". |
|
3225 |
|
3226 Tue Apr 11 10:59:24 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3227 |
|
3228 * f77-uscore.h (F77_FCN): Allow for possibility of uppercase |
|
3229 identifiers. |
|
3230 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
3231 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
3232 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
3233 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
3234 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
3235 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
3236 Quad.cc: Change usage of F77_FCN to match new definition |
|
3237 |
|
3238 * utils.cc dbleSVD.cc dbleSCHUR.cc dbleQRP.cc dbleQR.cc dbleLU.cc |
|
3239 dbleHESS.cc dbleGEPBAL.cc dbleAEPBAL.cc dRowVector.cc |
|
3240 dColVector.cc QLD.cc CmplxSVD.cc CmplxCHOL.cc CmplxHESS.cc |
|
3241 CmplxQR.cc CmplxQRP.cc QPSOL.cc CmplxAEPBAL.cc CmplxLU.cc |
|
3242 CmplxSCHUR.cc dMatrix.cc CColVector.cc CRowVector.cc dbleCHOL.cc |
|
3243 CollocWt.cc NLEqn.cc EIG.cc DAE.cc ODE.cc CMatrix.cc NPSOL.cc |
|
3244 Quad.cc: Where appropriate, declare Fortran subroutines to take |
|
3245 args by reference instead of pointer. Change all callers. |
|
3246 |
|
3247 Sun Apr 9 20:11:56 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3248 |
|
3249 * MArray.h (MArray2::~MArray2, MDiagArray::~MDiagArray): New |
|
3250 functions. Make += and -= operators friend functions. |
|
3251 |
|
3252 * Array.h (Array2::~Array2, Array3::~Array3, |
|
3253 DiagArray::~DiagArray): New functions. |
|
3254 |
|
3255 Wed Apr 5 21:21:13 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3256 |
|
3257 * Makefile.in (EXTRAS): Don't distribute mx-kludge.cc. |
|
3258 (MATRIX_INC): Don't distribute mx-kludge.h. |
|
3259 |
|
3260 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
3261 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
3262 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
3263 dRowVector.h dRowVector.cc: |
|
3264 Derive classes from MArray, MArray2, and MDiagArray, not Array, |
|
3265 Array2, and DiagArray2. |
|
3266 Don't use functions defined in mx-kludge.cc for arithmetic |
|
3267 like-type operations on arrays. |
|
3268 |
|
3269 * MArray.cc: Use the classes defined here like-type mathematical |
|
3270 operations on Array objects. Abuse CPP more. |
|
3271 * Makefile.in (TEMPLATE_SRC): Add it to the list. |
|
3272 (EXTRAS): Delete it from this list. |
|
3273 |
|
3274 * MArray-C.cc, MArray-d.cc: New files. |
|
3275 * Makefile.in (TI_SRC): Add them to the list. |
|
3276 |
|
3277 Tue Apr 4 14:13:46 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3278 |
|
3279 * mx-kludge.cc: Abuse CPP even more. |
|
3280 |
|
3281 Mon Apr 3 21:05:30 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3282 |
|
3283 * Objective.h (objective_function): Add missing const. |
|
3284 (gradient_function): Likewise. |
|
3285 |
|
3286 * CColVector.h CColVector.cc CDiagMatrix.h CDiagMatrix.cc |
|
3287 CMatrix.h CMatrix.cc CRowVector.h CRowVector.cc dColVector.h |
|
3288 dColVector.cc dDiagMatrix.h dDiagMatrix.cc dMatrix.h dMatrix.cc |
|
3289 dRowVector.h dRowVector.cc: |
|
3290 Reorganize to declare and define friends where they should be, |
|
3291 based on the use of private constructors. |
|
3292 |
|
3293 Fri Mar 31 10:09:40 1995 John Eaton <jwe@schoch.che.utexas.edu> |
|
3294 |
|
3295 * CRowVector.h (linspace): Add declaration. |
|
3296 * dRowVector.h (linspace): Likewise. |
|
3297 |
|
3298 * dMatrix.cc (Matrix::inverse, Matrix::determinant, Matrix::solve): |
|
3299 Force result of rcond + 1.0 to be stored. |
|
3300 * CMatrix.cc (ComplexMatrix::inverse, ComplexMatrix::determinant, |
|
3301 ComplexMatrix::solve): Likewise. |
|
3302 |
|
3303 See ChangeLog.1 in the top level directory for earlier changes. |