Skip to content

Commit

Permalink
baby steps
Browse files Browse the repository at this point in the history
  • Loading branch information
samukweku committed Apr 20, 2023
1 parent 46b1745 commit fc2c3df
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 37 deletions.
10 changes: 0 additions & 10 deletions src/core/expr/funary/pyfn.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,6 @@ void py::DatatableModule::init_funary()
ADD_FN(&dt::expr::funary_pyfn, dt::expr::ARGS); \
register_args(dt::expr::ARGS, dt::expr::OP)

// Trigonometric
FUNARY(args_sin, Op::SIN);
FUNARY(args_cos, Op::COS);
FUNARY(args_tan, Op::TAN);
FUNARY(args_arcsin, Op::ARCSIN);
FUNARY(args_arccos, Op::ARCCOS);
FUNARY(args_arctan, Op::ARCTAN);
FUNARY(args_deg2rad, Op::DEG2RAD);
FUNARY(args_rad2deg, Op::RAD2DEG);

// Hyperbolic
FUNARY(args_sinh, Op::SINH);
FUNARY(args_cosh, Op::COSH);
Expand Down
9 changes: 0 additions & 9 deletions src/core/expr/funary/pyfn.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ namespace dt {
namespace expr {


// Trigonometric
extern py::PKArgs args_sin;
extern py::PKArgs args_cos;
extern py::PKArgs args_tan;
extern py::PKArgs args_arcsin;
extern py::PKArgs args_arccos;
extern py::PKArgs args_arctan;
extern py::PKArgs args_deg2rad;
extern py::PKArgs args_rad2deg;

// Hyperbolic
extern py::PKArgs args_sinh;
Expand Down
10 changes: 0 additions & 10 deletions src/core/expr/funary/umaker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,6 @@ umaker_ptr resolve_op(Op opcode, SType stype)
case Op::UMINUS: return resolve_op_uminus(stype);
case Op::UINVERT: return resolve_op_uinvert(stype);

// Math: trigonometric
case Op::SIN: return resolve_op_sin(stype);
case Op::COS: return resolve_op_cos(stype);
case Op::TAN: return resolve_op_tan(stype);
case Op::ARCSIN: return resolve_op_arcsin(stype);
case Op::ARCCOS: return resolve_op_arccos(stype);
case Op::ARCTAN: return resolve_op_arctan(stype);
case Op::DEG2RAD: return resolve_op_deg2rad(stype);
case Op::RAD2DEG: return resolve_op_rad2deg(stype);

// Math: hyperbolic
case Op::SINH: return resolve_op_sinh(stype);
case Op::COSH: return resolve_op_cosh(stype);
Expand Down
8 changes: 0 additions & 8 deletions src/core/expr/funary/umaker.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,6 @@ umaker_ptr resolve_op_uminus(SType);
umaker_ptr resolve_op_uinvert(SType);

// Trigonometric
umaker_ptr resolve_op_sin(SType);
umaker_ptr resolve_op_cos(SType);
umaker_ptr resolve_op_tan(SType);
umaker_ptr resolve_op_arcsin(SType);
umaker_ptr resolve_op_arccos(SType);
umaker_ptr resolve_op_arctan(SType);
umaker_ptr resolve_op_deg2rad(SType);
umaker_ptr resolve_op_rad2deg(SType);

// Hyperbolic
umaker_ptr resolve_op_sinh(SType);
Expand Down

0 comments on commit fc2c3df

Please sign in to comment.