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.

12345678910111213141516
  1. #ifndef DYADIC_OPERATION_RESULT
  2. #define DYADIC_OPERATION_RESULT
  3. struct DyadicOperationResult {
  4. double value;
  5. double left_grad;
  6. double right_grad;
  7. DyadicOperationResult(double value, double left_grad, double right_grad){
  8. this->value = value;
  9. this->left_grad = left_grad;
  10. this->right_grad = right_grad;
  11. }
  12. };
  13. #endif /* end of include guard: DYADIC_OPERATION_RESULT */

Edge : 一个开源的科学计算引擎