X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3b4740f2c34e232bcf203b9407af5637acaecaec..HEAD:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp deleted file mode 100644 index 5fb0290408..0000000000 --- a/src/surf/network_cm02.hpp +++ /dev/null @@ -1,88 +0,0 @@ -/* Copyright (c) 2013-2015. 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. */ - -#ifndef SURF_NETWORK_CM02_HPP_ -#define SURF_NETWORK_CM02_HPP_ - -#include - -#include "network_interface.hpp" -#include "xbt/graph.h" - - - -/*********** - * Classes * - ***********/ - -namespace simgrid { - namespace surf { - - class XBT_PRIVATE NetworkCm02Model; - class XBT_PRIVATE NetworkCm02Action; - class XBT_PRIVATE NetworkSmpiModel; - - } -} - -/********* - * Model * - *********/ - -namespace simgrid { - namespace surf { - - class NetworkCm02Model : public NetworkModel { - public: - NetworkCm02Model(); - explicit NetworkCm02Model(void (*solve_fun)(lmm_system_t self)); - virtual ~NetworkCm02Model() = default; - LinkImpl* createLink(const char* name, double bandwidth, double latency, - e_surf_link_sharing_policy_t policy) override; - void updateActionsStateLazy(double now, double delta) override; - void updateActionsStateFull(double now, double delta) override; - Action* communicate(s4u::Host* src, s4u::Host* dst, double size, double rate) override; - virtual void gapAppend(double size, const LinkImpl* link, NetworkAction* action); - - protected: - bool haveGap_ = false; - }; - - /************ - * Resource * - ************/ - - class NetworkCm02Link : public LinkImpl { - public: - NetworkCm02Link(NetworkCm02Model* model, const char* name, double bandwidth, double latency, - e_surf_link_sharing_policy_t policy, lmm_system_t system); - virtual ~NetworkCm02Link() = default; - void apply_event(tmgr_trace_iterator_t event, double value) override; - void setBandwidth(double value) override; - void setLatency(double value) override; - virtual void gapAppend(double size, const LinkImpl* link, NetworkAction* action); - }; - - - /********** - * Action * - **********/ - class NetworkCm02Action : public NetworkAction { - friend Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate); - friend NetworkSmpiModel; - public: - NetworkCm02Action(Model *model, double cost, bool failed) - : NetworkAction(model, cost, failed) {}; - virtual ~NetworkCm02Action() = default; - void updateRemainingLazy(double now) override; - protected: - double senderGap_; - }; - - } -} - -#endif /* SURF_NETWORK_CM02_HPP_ */