diff --git a/src/input_parsers/AcasNnet.h b/src/input_parsers/AcasNnet.h index f5c6a81cd..5f4657d7f 100644 --- a/src/input_parsers/AcasNnet.h +++ b/src/input_parsers/AcasNnet.h @@ -33,8 +33,8 @@ class AcasNnet double *ranges; // Array of the ranges used to scale the inputs and outputs double ****matrix; // 4D jagged array that stores the weights and biases // the neural network. - double *inputs; // Scratch array for inputs to the different layers - double *temp; // Scratch array for outputs of different layers + double *inputs; // Scratch array for inputs to the different layers + double *temp; // Scratch array for outputs of different layers }; // Functions Implemented