You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef DYADIC_OPERATION_RESULT
- #define DYADIC_OPERATION_RESULT
-
- struct DyadicOperationResult {
- double value;
- double left_grad;
- double right_grad;
-
- DyadicOperationResult(double value, double left_grad, double right_grad){
- this->value = value;
- this->left_grad = left_grad;
- this->right_grad = right_grad;
- }
- };
-
- #endif /* end of include guard: DYADIC_OPERATION_RESULT */
|