diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp index 9e0e457b49fe40b2a6e9e3ce5c5e4b77bee1d93e..6c4ca93ce28c0a8c769606f07b1badee676423fd 100644 --- a/include/aidge/aidge.hpp +++ b/include/aidge/aidge.hpp @@ -70,6 +70,7 @@ #include "aidge/utils/Attributes.hpp" #include "aidge/utils/StaticAttributes.hpp" #include "aidge/utils/DynamicAttributes.hpp" +#include "aidge/utils/Random.hpp" #include "aidge/utils/Registrar.hpp" #include "aidge/utils/Types.h" diff --git a/include/aidge/utils/Random.hpp b/include/aidge/utils/Random.hpp new file mode 100644 index 0000000000000000000000000000000000000000..704609c0c778c7065a580b86fc67aea7e9d3525d --- /dev/null +++ b/include/aidge/utils/Random.hpp @@ -0,0 +1,31 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + + +#ifndef AIDGE_RANDOM_H_ +#define AIDGE_RANDOM_H_ + + +#include <algorithm> +#include <vector> +#include <random> + +namespace Random { + + void randShuffle(std::vector<unsigned int>& vec) { + std::random_device rd; + std::mt19937 g(rd()); + std::shuffle(vec.begin(), vec.end(), g); + } + +} + +#endif //AIDGE_RANDOM_H_ \ No newline at end of file