File tree Expand file tree Collapse file tree 4 files changed +0
-37
lines changed
Expand file tree Collapse file tree 4 files changed +0
-37
lines changed Original file line number Diff line number Diff line change @@ -111,16 +111,6 @@ void py::DatatableModule::init_funary()
111111 ADD_FN (&dt::expr::funary_pyfn, dt::expr::ARGS); \
112112 register_args (dt::expr::ARGS, dt::expr::OP)
113113
114- // Trigonometric
115- FUNARY (args_sin, Op::SIN);
116- FUNARY (args_cos, Op::COS);
117- FUNARY (args_tan, Op::TAN);
118- FUNARY (args_arcsin, Op::ARCSIN);
119- FUNARY (args_arccos, Op::ARCCOS);
120- FUNARY (args_arctan, Op::ARCTAN);
121- FUNARY (args_deg2rad, Op::DEG2RAD);
122- FUNARY (args_rad2deg, Op::RAD2DEG);
123-
124114 // Hyperbolic
125115 FUNARY (args_sinh, Op::SINH);
126116 FUNARY (args_cosh, Op::COSH);
Original file line number Diff line number Diff line change @@ -26,15 +26,6 @@ namespace dt {
2626namespace expr {
2727
2828
29- // Trigonometric
30- extern py::PKArgs args_sin;
31- extern py::PKArgs args_cos;
32- extern py::PKArgs args_tan;
33- extern py::PKArgs args_arcsin;
34- extern py::PKArgs args_arccos;
35- extern py::PKArgs args_arctan;
36- extern py::PKArgs args_deg2rad;
37- extern py::PKArgs args_rad2deg;
3829
3930// Hyperbolic
4031extern py::PKArgs args_sinh;
Original file line number Diff line number Diff line change @@ -65,16 +65,6 @@ umaker_ptr resolve_op(Op opcode, SType stype)
6565 case Op::UMINUS: return resolve_op_uminus (stype);
6666 case Op::UINVERT: return resolve_op_uinvert (stype);
6767
68- // Math: trigonometric
69- case Op::SIN: return resolve_op_sin (stype);
70- case Op::COS: return resolve_op_cos (stype);
71- case Op::TAN: return resolve_op_tan (stype);
72- case Op::ARCSIN: return resolve_op_arcsin (stype);
73- case Op::ARCCOS: return resolve_op_arccos (stype);
74- case Op::ARCTAN: return resolve_op_arctan (stype);
75- case Op::DEG2RAD: return resolve_op_deg2rad (stype);
76- case Op::RAD2DEG: return resolve_op_rad2deg (stype);
77-
7868 // Math: hyperbolic
7969 case Op::SINH: return resolve_op_sinh (stype);
8070 case Op::COSH: return resolve_op_cosh (stype);
Original file line number Diff line number Diff line change @@ -87,14 +87,6 @@ umaker_ptr resolve_op_uminus(SType);
8787umaker_ptr resolve_op_uinvert (SType);
8888
8989// Trigonometric
90- umaker_ptr resolve_op_sin (SType);
91- umaker_ptr resolve_op_cos (SType);
92- umaker_ptr resolve_op_tan (SType);
93- umaker_ptr resolve_op_arcsin (SType);
94- umaker_ptr resolve_op_arccos (SType);
95- umaker_ptr resolve_op_arctan (SType);
96- umaker_ptr resolve_op_deg2rad (SType);
97- umaker_ptr resolve_op_rad2deg (SType);
9890
9991// Hyperbolic
10092umaker_ptr resolve_op_sinh (SType);
You can’t perform that action at this time.
0 commit comments