Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / bindings / java / org / simgrid / msg / Host.java
index 9a9b0f4..866d537 100644 (file)
@@ -1,6 +1,6 @@
 /* Bindings to the MSG hosts */
 
-/* Copyright (c) 2006-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2022. 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. */
@@ -138,7 +138,7 @@ public class Host {
        public native double getConsumedEnergy();
 
        /** Returns the current load of the host, as a ratio = achieved_flops / (core_current_speed * core_amount)
-        *      
+        *
         * See simgrid::plugin::HostLoad::get_current_load() for the full documentation.
         */
        public native double getCurrentLoad();
@@ -146,7 +146,7 @@ public class Host {
        public native double getComputedFlops();
        /** Returns the average load of the host as a ratio since the beginning of the simulation*/
        public native double getAvgLoad();
-   
+
        /** Returns the current pstate */
        public native int getPstate();
        /** Changes the current pstate */
@@ -164,5 +164,5 @@ public class Host {
        private static native void nativeInit();
        static {
                nativeInit();
-       }       
+       }
 }