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 POLYADIC_OPERATION_RESULT
- #define POLYADIC_OPERATION_RESULT
-
- #include <vector>
-
- struct PolyadicOperationResult {
- double value;
- std::vector<double> gradients;
-
- PolyadicOperationResult(double value, const std::vector<double>& gradients){
- this->value = value;
- this->gradients = gradients;
- }
- };
-
- #endif /* end of include guard: POLYADIC_OPERATION_RESULT */
|