Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / src / kernel / resource / FactorSet.hpp
index 7817188..9fe3453 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -37,9 +37,9 @@ public:
   void parse(const std::string& string_values);
   bool is_initialized() const { return initialized_; }
   // Get the default value
-  double operator()();
+  double operator()() const;
   // Get the factor to use for the provided size
-  double operator()(double size);
+  double operator()(double size) const;
 };
 
 } // namespace simgrid::kernel::resource