From 6375ae3257f4e8687a5b2f8b738edd19d3a2c04b Mon Sep 17 00:00:00 2001 From: anwu1219 Date: Mon, 12 Feb 2024 20:09:31 -0800 Subject: [PATCH] not sure why the file is not formatted --- src/input_parsers/AcasNnet.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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