Skip to content

Commit

Permalink
Prepare for v0.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Sep 7, 2016
1 parent 99323ff commit f46470d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.3.2
======
- git-archive generated zip now pip-installable

v0.3.1
======
- Introduced ``finitediff::generate_weights_optim`` which is a pre-sorting
Expand Down
4 changes: 2 additions & 2 deletions finitediff/external/newton_interval/tests/unittest.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ int run_tests(int ntests, const TestCase** test_cases, char * suite_name){
printf("In %s, %s%c%s passed %c%s\n", suite_name,
cur_test.name, 0x1B, "[32;1m",
0x1B, "[30;0m");
}
}
else{
exit_status = 1;
printf("In %s, %s%c%s failed %c%s with result %d\n", suite_name,
printf("In %s, %s%c%s failed %c%s with result %d\n", suite_name,
cur_test.name, 0x1B, "[31;1m",
0x1B, "[30;0m", result);
}
Expand Down
4 changes: 2 additions & 2 deletions finitediff/include/c_finitediff_fort.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
extern "C" {
#endif

void fornberg_apply_fd(int nin, int maxorder, const double * const xdata,
void fornberg_apply_fd(int nin, int maxorder, const double * const xdata,
const double * const ydata, double xtgt, double * const out);

void fornberg_populate_weights(double z, const double * const x, int nd,
void fornberg_populate_weights(double z, const double * const x, int nd,
int m, double * const c);

#ifdef __cplusplus
Expand Down

0 comments on commit f46470d

Please sign in to comment.