Skip to content

Commit

Permalink
remove windows build, fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Baum committed Jan 8, 2021
1 parent f53ea6d commit 55a8686
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ language: cpp
os:
- linux
- osx
- windows
env:
global:
- OMP_NUM_THREADS=4
- CFLAGS="-Wall -Wextra -pedantic -O3"
compiler:
- g++
- clang++
script:
- "make clean && make && make tests && chmod a+x run_tests.sh && ./run_tests.sh"
2 changes: 1 addition & 1 deletion src/ode_rkf_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class OdeRKF32 : public OdeEmbedded, private OdeRK, private OdeERK {
//coefficents of tableau
double c2, a21,
c3, a31, a32,
b1, b2, b3,
b1, b2,
d1, d2, d3;
};

Expand Down
3 changes: 0 additions & 3 deletions tests/test_systems.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ class StiffCliff : public Integrator {
this->set_sol(0, 1.0);
this->set_sol(1, 0.0);
this->set_sol(2, 0.0);
}
void initial_conditions (double *sol0) {

}
void ode_fun (double *solin, double *fout) {
double y1 = solin[0], y2 = solin[1], x = solin[2];
Expand Down

0 comments on commit 55a8686

Please sign in to comment.