summaryrefslogtreecommitdiff
path: root/opendc-core/src
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-core/src')
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Experiment.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Experiment.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/ExperimentRunner.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/ExperimentRunner.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Job.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Job.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Scheduler.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Scheduler.kt)8
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Task.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Task.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/User.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/User.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/sampler/Sampler.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/sampler/Sampler.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/Simulator.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/Simulator.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/SimulatorContext.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/SimulatorContext.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Edge.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Edge.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Entity.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Entity.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Graph.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Graph.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Node.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Node.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/DataCenter.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/DataCenter.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Rack.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Rack.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Slot.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Slot.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/room/Room.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/room/Room.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Cpu.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Cpu.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Gpu.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Gpu.kt)4
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Machine.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Machine.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/ProcessingUnit.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/ProcessingUnit.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/network/NetworkUnit.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/network/NetworkUnit.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/power/PowerUnit.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/power/PowerUnit.kt)6
-rw-r--r--opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/storage/StorageUnit.kt (renamed from opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/storage/StorageUnit.kt)6
24 files changed, 61 insertions, 61 deletions
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Experiment.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Experiment.kt
index c91f55da..7638b2c8 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Experiment.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Experiment.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,11 +22,11 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
/**
* A simulation of multiple simultaneous workloads running on top of a topology.
*
* @author Fabian Mastenbroek (f.s.mastenbroek@student.tudelft.nl)
*/
-class Experiment {} \ No newline at end of file
+class Experiment {}
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/ExperimentRunner.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/ExperimentRunner.kt
index 43b9ddac..bb38de99 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/ExperimentRunner.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/ExperimentRunner.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
/**
*
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Job.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Job.kt
index 8b225bd8..e265a031 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Job.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Job.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
/**
* A job that is submitted to a cloud network, which consists of one or multiple [Task]s.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Scheduler.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Scheduler.kt
index 4e000af3..713605e4 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Scheduler.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Scheduler.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,10 +22,10 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
-import nl.tudelft.opendc.topology.Entity
-import nl.tudelft.opendc.topology.Node
+import nl.atlarge.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Node
/**
* A task scheduler that is coupled to an [Entity] in the topology of the cloud network.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Task.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Task.kt
index f425ccac..ec2eb2fa 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/Task.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/Task.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
/**
* A task represents some computation that is part of a [Job].
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/User.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/User.kt
index a818fc5f..d97b980b 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/experiment/User.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/experiment/User.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.experiment
+package nl.atlarge.opendc.experiment
-import nl.tudelft.opendc.topology.Node
+import nl.atlarge.opendc.topology.Node
/**
* A user of a cloud network that provides [Job]s for the simulation.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/sampler/Sampler.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/sampler/Sampler.kt
index a89486ec..2d6d4dc8 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/sampler/Sampler.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/sampler/Sampler.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.sampler
+package nl.atlarge.opendc.sampler
/**
* A sampler generates data points (samples) of the simulation based on the events that occur to [Entity] instances that
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/Simulator.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/Simulator.kt
index c1ea6b2d..07db1e4c 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/Simulator.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/Simulator.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.simulator
+package nl.atlarge.opendc.simulator
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A simulator that simulates a single entity in the topology of a cloud network.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/SimulatorContext.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/SimulatorContext.kt
index e7729bea..1ddfbc6a 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/simulator/SimulatorContext.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/simulator/SimulatorContext.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.simulator
+package nl.atlarge.opendc.simulator
/**
* The context in which a [Simulator] runs.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Edge.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Edge.kt
index 05541775..de5bb0d4 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Edge.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Edge.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology
+package nl.atlarge.opendc.topology
/**
* An edge that represents a connection between exactly two instances of [Node].
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Entity.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Entity.kt
index 37423959..ef9f3593 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Entity.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Entity.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology
+package nl.atlarge.opendc.topology
/**
* An entity in a cloud network.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Graph.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Graph.kt
index 1cbbdb95..a87957e3 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Graph.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Graph.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology
+package nl.atlarge.opendc.topology
/**
* A graph data structure which represents the logical topology of a cloud network consisting of one or more data
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Node.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Node.kt
index da0d183c..cce5990f 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/Node.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/Node.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology
+package nl.atlarge.opendc.topology
/**
* A node in the logical topology of a cloud network, representing some [Entity].
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/DataCenter.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/DataCenter.kt
index 56d0366e..b72b0c2a 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/DataCenter.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/DataCenter.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.container
+package nl.atlarge.opendc.topology.container
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A representation of a facility used to house computer systems and associated components.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Rack.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Rack.kt
index b64da3bb..d5ac5d99 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Rack.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Rack.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.container.rack
+package nl.atlarge.opendc.topology.container.rack
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A type of physical steel and electronic framework that is designed to house servers, networking devices, cables and
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Slot.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Slot.kt
index ce371e24..2556598e 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/rack/Slot.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/rack/Slot.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.container.rack
+package nl.atlarge.opendc.topology.container.rack
/**
* This class represents a slot in a [Rack] of [Machine]s.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/room/Room.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/room/Room.kt
index 0b73963d..e8dcfda5 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/container/room/Room.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/container/room/Room.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.container.room
+package nl.atlarge.opendc.topology.container.room
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A physical room in a data center which contains [Entity]s.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Cpu.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Cpu.kt
index 612af5ce..5c1b8b57 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Cpu.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Cpu.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.machine
+package nl.atlarge.opendc.topology.machine
/**
* A central processing unit.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Gpu.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Gpu.kt
index f4851f9c..91a7be6a 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Gpu.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Gpu.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.machine
+package nl.atlarge.opendc.topology.machine
/**
* A graphics processing unit.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Machine.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Machine.kt
index f50fc717..8944362f 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/Machine.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/Machine.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.machine
+package nl.atlarge.opendc.topology.machine
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A Physical Machine (PM) inside a rack of a data center. It has a speed, and can be given a workload on which it will
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/ProcessingUnit.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/ProcessingUnit.kt
index e7194a80..095a0bb5 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/machine/ProcessingUnit.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/machine/ProcessingUnit.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.machine
+package nl.atlarge.opendc.topology.machine
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* An interface representing a generic processing unit which is placed into a [Machine].
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/network/NetworkUnit.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/network/NetworkUnit.kt
index c4a81d9b..fcb5f20a 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/network/NetworkUnit.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/network/NetworkUnit.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.network
+package nl.atlarge.opendc.topology.network
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A generic interface for a network unit in a cloud network.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/power/PowerUnit.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/power/PowerUnit.kt
index 19eeaea3..5fc0086d 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/power/PowerUnit.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/power/PowerUnit.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.power
+package nl.atlarge.opendc.topology.power
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* An [Entity] which provides power for other entities a cloud network to run.
diff --git a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/storage/StorageUnit.kt b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/storage/StorageUnit.kt
index d601e027..6fac585f 100644
--- a/opendc-core/src/main/kotlin/nl/tudelft/opendc/topology/storage/StorageUnit.kt
+++ b/opendc-core/src/main/kotlin/nl/atlarge/opendc/topology/storage/StorageUnit.kt
@@ -1,7 +1,7 @@
/*
* MIT License
*
- * Copyright (c) 2017 tudelft-atlarge
+ * Copyright (c) 2017 atlarge-research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -22,9 +22,9 @@
* SOFTWARE.
*/
-package nl.tudelft.opendc.topology.storage
+package nl.atlarge.opendc.topology.storage
-import nl.tudelft.opendc.topology.Entity
+import nl.atlarge.opendc.topology.Entity
/**
* A generic interface for a storage unit in a cloud network.