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.

mor.h 316 B

1234567891011121314
  1. #ifndef MONADIC_OPERATION_RESULT
  2. #define MONADIC_OPERATION_RESULT
  3. struct MonadicOperationResult {
  4. double value;
  5. double grad;
  6. MonadicOperationResult(double value, double grad){
  7. this->value = value;
  8. this->grad = grad;
  9. }
  10. };
  11. #endif /* end of include guard: MONADIC_OPERATION_RESULT */

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

Contributors (1)