Skip to content

Commit b78a2ac

Browse files
committed
reflect sparsediffengine refactor in bindings'
1 parent 4a25e71 commit b78a2ac

12 files changed

Lines changed: 13 additions & 12 deletions

File tree

sparsediffpy/_bindings/atoms/asinh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_ASINH_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_asinh(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/atanh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_ATANH_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_restricted_dom.h"
66

77
static PyObject *py_make_atanh(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/common.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
#include <numpy/arrayobject.h>
77

88
#include "affine.h"
9-
#include "elementwise_univariate.h"
9+
#include "elementwise_full_dom.h"
10+
#include "elementwise_restricted_dom.h"
1011
#include "expr.h"
1112

1213
#define EXPR_CAPSULE_NAME "DNLP_EXPR"

sparsediffpy/_bindings/atoms/cos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_COS_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_cos(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/entr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_ENTR_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_restricted_dom.h"
66

77
static PyObject *py_make_entr(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/logistic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_LOGISTIC_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_logistic(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/power.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_POWER_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_power(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/sin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_SIN_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_sin(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/sinh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_SINH_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_full_dom.h"
66

77
static PyObject *py_make_sinh(PyObject *self, PyObject *args)
88
{

sparsediffpy/_bindings/atoms/tan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define ATOM_TAN_H
33

44
#include "common.h"
5-
#include "elementwise_univariate.h"
5+
#include "elementwise_restricted_dom.h"
66

77
static PyObject *py_make_tan(PyObject *self, PyObject *args)
88
{

0 commit comments

Comments
 (0)