aboutsummaryrefslogtreecommitdiff
path: root/mg2d.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-04-02 11:05:36 +0200
committerAnton Khirnov <anton@khirnov.net>2019-04-02 11:09:53 +0200
commit2e03749bb901494f857547cc518ad58eea76a098 (patch)
treec56c4d4b94f679394c980a9311e981a962415bbe /mg2d.h
parent140ea5d85e4711f95065b440f64f647f5511f5e9 (diff)
mg2d: add API for interpolating an initial guess from a provided grid
Diffstat (limited to 'mg2d.h')
-rw-r--r--mg2d.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mg2d.h b/mg2d.h
index 6452526..fd11906 100644
--- a/mg2d.h
+++ b/mg2d.h
@@ -195,4 +195,9 @@ void mg2d_print_stats(MG2DContext *ctx, const char *prefix);
*/
unsigned int mg2d_max_fd_stencil(void);
+int mg2d_init_guess(MG2DContext *ctx, const double *src,
+ ptrdiff_t src_stride,
+ const size_t src_size[2],
+ const double src_step[2]);
+
#endif /* MG2D_H */