Commit Graph

1384 Commits

Author SHA1 Message Date
Valentin Hartmann
fa769dd236 Fixed small bug and added more functionality to the controller 2017-06-19 10:04:37 +02:00
Valentin Hartmann
2f098f7d86 removed tmp-file 2017-05-25 18:45:38 +02:00
Valentin Hartmann
8e2b3c2550 fixed minor things in stepper 2017-05-25 16:40:31 +02:00
Valentin Hartmann
ac90a029ce completed testcases 2017-05-25 16:39:57 +02:00
Valentin Hartmann
233ebc5792 changes to files to fix warnings 2017-05-24 16:31:40 +02:00
Valentin Hartmann
518f2186ca unittests 2017-05-24 16:31:16 +02:00
Valentin Hartmann
6a00e946f7 Initial commit from Bitbucket to Github 2017-05-23 09:29:37 +02:00
headmyshoulder
16ee3e182f Merge pull request #206 from ddemidov/multi_array_dispatcher
Provide algebra dispatcher for boost::multi_array
2017-05-10 08:10:24 -07:00
Denis Demidov
491df811e3 Provide algebra dispatcher for boost::multi_array
Fixes #205
2017-05-10 11:35:13 +03:00
Mario Mulansky
c0e1cf30f9 Merge pull request #19 from boostorg/from_headmyshoulder
Merge from headmyshoulder/odeint-v2
2017-05-09 20:57:34 -07:00
Mario Mulansky
67e1908720 Merge branch 'master' into odeint_boost_develop
Merging headmyshoulder/master into boostorg/develop
2017-05-09 20:49:33 -07:00
Mario Mulansky
f0469a2fb6 Fix travis config 2 2017-05-07 13:57:31 -07:00
Mario Mulansky
3a83fdbd8f Fix travis config 2017-05-07 13:51:50 -07:00
Mario Mulansky
53d15cc83a Use 2 cores on Travis, not 4 2017-05-07 13:46:30 -07:00
Mario Mulansky
ff3fd556cb Fix compiler warnings, activate parallel CI build 2017-05-07 13:27:57 -07:00
Mario Mulansky
a452f6e816 Fix abs warnings and clang compiler warning flag 2017-05-07 13:07:10 -07:00
Mario Mulansky
dd54cbf031 Fix Badge in Readme 2017-05-07 12:51:53 -07:00
Mario Mulansky
5d3b013955 Update Boost on Travis, fix bug with boost 1.63 2017-05-07 12:40:31 -07:00
Mario Mulansky
850fa824eb Add no-unused-local-typedef to Jenkins build
This adds the flag -Wno-unused-local-typedef to the global build
options on Jenkins to shorten the log file for the clang build
when building Boost.
2017-01-26 21:48:39 -08:00
Mario Mulansky
7fb8169cef Merge pull request #199 from thk686/master
Fix unused variable warning
2017-01-26 21:37:07 -08:00
Tim Keitt
f1255a8319 Fix unused variable warning 2017-01-26 12:05:53 -06:00
Mario Mulansky
49c9334c8a Merge pull request #18 from Flast/testfix
Fix failed two tests.
2016-08-08 20:33:49 -07:00
Kohei Takahashi
357e5b36e7 Fix missing include. 2016-07-30 16:59:51 +09:00
Kohei Takahashi
5c8c4fb1b1 Relaxing test requirements. 2016-07-30 16:57:53 +09:00
Karsten Ahnert
b816e93fcf fixing #12107 2016-04-01 21:39:42 +02:00
headmyshoulder
b171ad20da Merge pull request #17 from akumta/patch-6
update for ticket #12034
2016-03-01 23:34:42 +01:00
akumta
9c4a5d8f42 update for ticket #12034 2016-02-29 19:50:21 -08:00
headmyshoulder
6f13bf40ee Merge pull request #16 from kenichiice/dot-gitmodules
Remove .gitmodules
2016-02-26 08:01:58 +01:00
OGAWA KenIchi
c2add5c93f Remove .gitmodules 2016-02-21 01:45:55 +09:00
Mario Mulansky
31c29dd948 fixes #189
A bug introduced with the recent max_dt facility prevented the rosenbrock
controller to increase step size in most cases (if max_dt=0). This is fixed
now, and a regression test case has been added.
2016-01-19 15:37:50 +01:00
Mario Mulansky
cc9b1963e7 BS stepper: correct exponents for optimal h
Becoming suspicious by the difference of the exponents used for computing the
new step size in the BS and BS denseout stepper (see
0f943fbf8b) I checked again the Hairer book and
I'm now convinced there was a mistake in our implementation and both
steppers should use 1/(2*k+1) as exponent. The background is the this exponent
represents the order of the error of the k-th iteration, and this order is
always 2k+1, independent of the interval_sequence. This error is computed from
the difference of the k-th and k-1 - th iteration, which have the orders 2k+2
2k respectively, which means the computed error has order 2k+1.
2015-12-28 15:26:00 +01:00
Mario Mulansky
ae53eb1570 Merge pull request #186 from mmlanger/issue185_bs_performance
Performance improvement for Bulirsch-Stoer-Stepper
2015-12-28 13:55:37 +01:00
Martin Langer
a625f532b1 corrected rushed fix 2015-12-28 12:04:39 +01:00
Martin Langer
0f943fbf8b fixed wrong precomputation in BS dense stepper 2015-12-27 22:42:33 +01:00
Martin Langer
61a74d2bfc fixed missing semicolon 2015-12-18 16:14:48 +01:00
Martin Langer
607bb768ba table for precomputed facmin in bulirsch_stoer_dense_out 2015-12-18 15:40:53 +01:00
Martin Langer
cc8c9772ac table for precomputed facmin in bulirsch_stoer 2015-12-18 15:32:48 +01:00
Mario Mulansky
eb2804b281 resetting optimal order when resetting BS stepper
addressing #184, simple fix is to also reset m_current_k_opt and therefore
make sure the loop doesnt overshoot.
2015-12-10 17:22:44 +01:00
Mario Mulansky
a569bdc0c5 fixing #183 2015-12-10 17:18:09 +01:00
Mario Mulansky
9d02efbff2 added reset to adams bashforth moulton
The ABM stepper was missing reset functionality, see #182
2015-12-09 12:51:50 +01:00
Mario Mulansky
1eefa78c96 Bugfix for #144 also in const version
Issue #144 has been fixed some time ago, but only for the non-const ref do_step
interface. This fixes also the const ref interface implementation.
2015-12-09 12:09:39 +01:00
Mario Mulansky
fa99c05538 Merge branch 'master' into develop 2015-12-07 17:14:46 +01:00
Mario Mulansky
f51691421c Merge branch 'master' of github.com:headmyshoulder/odeint-v2 into develop 2015-11-13 12:30:41 +01:00
Mario Mulansky
0c8e003341 Merge branch 'master' of github.com:headmyshoulder/odeint-v2
Conflicts:
	test/Jamfile.v2
2015-11-05 21:30:58 -06:00
Mario Mulansky
4cb76b9083 Merge branch 'limit_step_size' 2015-11-05 21:20:44 -06:00
Mario Mulansky
270737744b Merge branch 'master' into limit_step_size 2015-11-05 21:16:07 -06:00
Mario Mulansky
9344015ea9 Merge pull request #176 from headmyshoulder/max_step_exception
Max step exception
2015-11-05 21:14:59 -06:00
Mario Mulansky
f71de757ba added assert checking if resizing is active 2015-11-05 11:21:06 -06:00
Mario Mulansky
ef10d2f314 remove iostream include 2015-11-04 19:51:45 -06:00
Mario Mulansky
5d29e1ec57 Merge branch 'master' of github.com:headmyshoulder/odeint-v2 2015-11-04 19:48:00 -06:00