Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Big move of all SMPI files in subfolders because it was a mess.
[simgrid.git] / src / smpi / smpi_op.hpp
diff --git a/src/smpi/smpi_op.hpp b/src/smpi/smpi_op.hpp
deleted file mode 100644 (file)
index 167a346..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Copyright (c) 2009-2010, 2012-2017. 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 SMPI_OP_HPP
-#define SMPI_OP_HPP
-
-#include "src/smpi/smpi_info.hpp"
-
-namespace simgrid{
-namespace smpi{
-
-class Op : public F2C{
-  private:
-    MPI_User_function *func_;
-    bool is_commutative_;
-    bool is_fortran_op_;
-  public:
-
-    Op(MPI_User_function * function, bool commutative);
-    bool is_commutative();
-    bool is_fortran_op();
-    void set_fortran_op();
-    void apply(void *invec, void *inoutvec, int *len, MPI_Datatype datatype);
-    static Op* f2c(int id);
-};
-
-}
-}
-
-#endif