Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the setset datacontainer: it's unused since a while
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 26 Oct 2015 20:22:16 +0000 (21:22 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 26 Oct 2015 20:22:16 +0000 (21:22 +0100)
ChangeLog
include/xbt/setset.h [deleted file]
src/xbt/setset.c [deleted file]
src/xbt/setset_private.h [deleted file]
tools/cmake/DefinePackages.cmake
tools/cmake/GCCFlags.cmake
tools/cmake/src/simgrid.nsi.in

index 847444c..e5d4efc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 SimGrid (3.13) UNRELEASED; urgency=low
 
 SimGrid (3.13) UNRELEASED; urgency=low
 
+ XBT
+ * Kill the setset datacontainer: it's unused since a while.
+
  -- $date Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
 
 SimGrid (3.12) stable; urgency=low
  -- $date Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
 
 SimGrid (3.12) stable; urgency=low
diff --git a/include/xbt/setset.h b/include/xbt/setset.h
deleted file mode 100644 (file)
index f325d2f..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-/* Copyright (c) 2010, 2014. 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 _XBT_SETSET_H
-#define _XBT_SETSET_H
-#include "xbt/misc.h"
-
-typedef struct s_xbt_setset *xbt_setset_t;
-
-typedef struct s_xbt_setset_set *xbt_setset_set_t;
-
-typedef struct s_xbt_setset_cursor *xbt_setset_cursor_t;
-
-#define XBT_SETSET_HEADERS \
-  unsigned long ID
-
-/* Constructor */
-xbt_setset_t xbt_setset_new(unsigned int size);
-
-/* Destructor */
-void xbt_setset_destroy(xbt_setset_t setset);
-
-/* Add an object to the setset, this will calculate its ID */
-void xbt_setset_elm_add(xbt_setset_t setset, void *obj);
-
-/* Remove an object from the setset */
-void xbt_setset_elm_remove(xbt_setset_t setset, void *obj);
-
-/* Create a new set in the setset */
-xbt_setset_set_t xbt_setset_new_set(xbt_setset_t setset);
-
-/* Destroy a set in the setset */
-void xbt_setset_destroy_set(xbt_setset_set_t);
-
-/* Insert an element into a set */
-void xbt_setset_set_insert(xbt_setset_set_t set, void *obj);
-
-/* Remove an element from a set */
-void xbt_setset_set_remove(xbt_setset_set_t set, void *obj);
-
-/* Remove all the elements of a set */
-void xbt_setset_set_reset(xbt_setset_set_t set);
-
-/* Select one element of a set */
-void *xbt_setset_set_choose(xbt_setset_set_t set);
-
-/* Extract one element of a set */
-void *xbt_setset_set_extract(xbt_setset_set_t set);
-
-/* Test if an element belongs to a set */
-int xbt_setset_set_belongs(xbt_setset_set_t set, void *obj);
-
-/* Get the number of elements in a set */
-int xbt_setset_set_size(xbt_setset_set_t set);
-
-/* Add all elements of set2 to set1 */
-void xbt_setset_add(xbt_setset_set_t set1, xbt_setset_set_t set2);
-
-/* Substract all elements of set2 from set1 */
-void xbt_setset_substract(xbt_setset_set_t set1, xbt_setset_set_t set2);
-
-/* Intersect set1 and set2 storing the result in set1 */
-void xbt_setset_intersect(xbt_setset_set_t set1, xbt_setset_set_t set2);
-
-/* Get the cursor to point to the first element of a set */
-void xbt_setset_cursor_first(xbt_setset_set_t set,
-                             xbt_setset_cursor_t * cursor);
-
-/* Get the data pointed by a cursor */
-int xbt_setset_cursor_get_data(xbt_setset_cursor_t cursor, void **data);
-
-/* Advance a cursor to the next element */
-void xbt_setset_cursor_next(xbt_setset_cursor_t cursor);
-
-
-#define xbt_setset_foreach(set, cursor, data) \
-          for(xbt_setset_cursor_first(set, &cursor);  \
-              xbt_setset_cursor_get_data(cursor, (void **)&data); \
-              xbt_setset_cursor_next(cursor))
-
-#endif
diff --git a/src/xbt/setset.c b/src/xbt/setset.c
deleted file mode 100644 (file)
index 86781e2..0000000
+++ /dev/null
@@ -1,394 +0,0 @@
-/* Copyright (c) 2010-2012, 2014. 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. */
-
-#include <stddef.h>
-#include <stdio.h>
-#include <string.h>
-#include "setset_private.h"
-#include "xbt/sysdep.h"
-#include "src/internal_config.h" /*_XBT_WIN32*/
-
-/*The function ffs doesn't exist for windows*/
-#ifdef _XBT_WIN32
-int ffs(int bits)
-{
-  int i;
-  if (bits == 0)
-    return (0);
-  for (i = 1;; i++, bits >>= 1) {
-    if (bits & 1)
-      break;
-  }
-  return (i);
-}
-#endif
-
-/**
- *  \brief Create a new setset data structure
- *  \param size The initial size of the setset (in number of elements)
- *  \return The created setset
- */
-xbt_setset_t xbt_setset_new(unsigned int size)
-{
-  xbt_setset_elm_entry_t first_elm = NULL;
-  xbt_setset_t setset = xbt_new0(s_xbt_setset_t, 1);
-  setset->elm_array =
-      xbt_dynar_new(sizeof(u_xbt_setset_elm_entry_t), NULL);
-  setset->sets = xbt_fifo_new();
-  /* Expand the elements dynar to the size indicated by the user, */
-  /* then create the first element, get a pointer to it and add it to the */
-  /* free elements list */
-  xbt_dynar_shrink(setset->elm_array, size);
-  first_elm =
-      (xbt_setset_elm_entry_t) xbt_dynar_push_ptr(setset->elm_array);
-  first_elm->free.next = 0;
-  return setset;
-}
-
-/**
- *  \brief Destroy a setset and free all it's resources
- *  \param The setset to destroy
- */
-void xbt_setset_destroy(xbt_setset_t setset)
-{
-  xbt_fifo_item_t item;
-  xbt_setset_set_t set;
-  xbt_dynar_free(&setset->elm_array);
-  xbt_fifo_foreach(setset->sets, item, set, xbt_setset_set_t) {
-    xbt_setset_destroy_set(set);
-  }
-  xbt_fifo_free(setset->sets);
-  xbt_free(setset);
-}
-
-/* Add an object to the setset, this will calculate its ID */
-void xbt_setset_elm_add(xbt_setset_t setset, void *obj)
-{
-  xbt_setset_elm_entry_t new_entry = NULL;
-  xbt_setset_elm_entry_t first_elm = NULL;
-  xbt_setset_elm_t e = (xbt_setset_elm_t) obj;
-  xbt_assert(e->ID == 0, "Adding element with non NULL ID");
-  first_elm =
-      (xbt_setset_elm_entry_t) xbt_dynar_get_ptr(setset->elm_array, 0);
-
-  /* Before create a new elm entry check if there is one in the free elm list. */
-  /* If there is not free elm entries, then create a new one  */
-  if (first_elm->free.next != 0) {
-    e->ID = first_elm->free.next;
-    new_entry =
-        (xbt_setset_elm_entry_t) xbt_dynar_get_ptr(setset->elm_array,
-                                                   first_elm->free.next);
-    first_elm->free.next = new_entry->free.next;
-  } else {
-    new_entry =
-        (xbt_setset_elm_entry_t) xbt_dynar_push_ptr(setset->elm_array);
-    e->ID = xbt_dynar_length(setset->elm_array) - 1;
-  }
-
-  new_entry->info.obj = e;
-  return;
-}
-
-/* Remove an object from the setset */
-void xbt_setset_elm_remove(xbt_setset_t setset, void *obj)
-{
-  xbt_setset_elm_t e = (xbt_setset_elm_t) obj;
-  xbt_setset_elm_entry_t e_entry =
-      xbt_dynar_get_ptr(setset->elm_array, e->ID);
-  xbt_setset_elm_entry_t first_free = NULL;
-
-  /* Link the elm entry to the list of free ones */
-  first_free = xbt_dynar_get_ptr(setset->elm_array, 0);
-  e_entry->free.next = first_free->free.next;
-  first_free->free.next = e->ID;
-}
-
-/* Get the object associated to a given index */
-/* WARNING: it must be a valid index! */
-void *_xbt_setset_idx_to_obj(xbt_setset_t setset, unsigned long idx)
-{
-  xbt_setset_elm_entry_t e_entry =
-      xbt_dynar_get_ptr(setset->elm_array, idx);
-  return e_entry->info.obj;
-}
-
-/**
- *  \brief Add a new set to the setset
- *  \param setset The setset that will contain the created set
- *  \returns The created set
- */
-xbt_setset_set_t xbt_setset_new_set(xbt_setset_t setset)
-{
-  xbt_setset_set_t newset = xbt_new0(s_xbt_setset_set_t, 1);
-  newset->setset = setset;
-  newset->size = xbt_dynar_length(setset->elm_array) / BITS_INT + 1;
-  newset->bitmap = xbt_new0(unsigned int, newset->size);
-  xbt_fifo_unshift(setset->sets, newset);
-  return newset;
-}
-
-/**
- *  \brief Destroy a set in the setset
- *  \param set The set to destroy
- */
-void xbt_setset_destroy_set(xbt_setset_set_t set)
-{
-  xbt_free(set->bitmap);
-  xbt_fifo_remove(set->setset->sets, set);
-  xbt_free(set);
-
-  return;
-}
-
-/**
- *  \brief Insert an element into a set
- *  \param set The set where the element is going to be added
- *  \param obj The element to add
- */
-void xbt_setset_set_insert(xbt_setset_set_t set, void *obj)
-{
-  xbt_setset_elm_t e = (xbt_setset_elm_t) obj;
-
-  if (e->ID == 0)
-    xbt_setset_elm_add(set->setset, e);
-
-  /* Check if we need to expand the bitmap */
-  if (set->size * BITS_INT - 1 < e->ID) {
-    set->bitmap =
-        xbt_realloc(set->bitmap, (e->ID / BITS_INT + 1) * sizeof(int));
-    memset(&set->bitmap[set->size], 0,
-           ((e->ID / BITS_INT + 1) - set->size) * sizeof(int));
-    set->size = (e->ID / BITS_INT + 1);
-  }
-
-  _set_bit(e->ID, set->bitmap);
-
-  return;
-}
-
-/**
- *  \brief Remove an element from a set
- *  \param set The set from which the element is going to be removed
- *  \param obj The element to remove
- */
-void xbt_setset_set_remove(xbt_setset_set_t set, void *obj)
-{
-  xbt_setset_elm_t e = (xbt_setset_elm_t) obj;
-  /* If the index of the object is between the bitmap then unset it, otherwise
-     do not do anything, because we already know it is not in the set */
-  if (e->ID != 0 && e->ID <= set->size * BITS_INT)
-    _unset_bit(e->ID, set->bitmap);
-
-  return;
-}
-
-/**
- *  \brief Remove all the elements of a set
- *  \param set The set to empty
- */
-void xbt_setset_set_reset(xbt_setset_set_t set)
-{
-  memset(set->bitmap, 0, set->size * sizeof(int));
-}
-
-/**
- *  \brief Choose one element of a set (but do not remove it)
- *  \param set The set
- *  \return An element that belongs to set \a set
- */
-void *xbt_setset_set_choose(xbt_setset_set_t set)
-{
-  unsigned int i;
-  /* Traverse the set and return the first element */
-  for (i = 0; i < set->size; i++)
-    if (set->bitmap[i] != 0)
-      return _xbt_setset_idx_to_obj(set->setset,
-                                    i * BITS_INT + ffs(set->bitmap[i]) -
-                                    1);
-  return NULL;
-}
-
-/**
- *  \brief Extract one element of a set (it removes it)
- *  \param set The set
- *  \return An element that belonged to set \a set
- */
-void *xbt_setset_set_extract(xbt_setset_set_t set)
-{
-  void *obj = xbt_setset_set_choose(set);
-  if (obj) {
-    xbt_setset_set_remove(set, obj);
-  }
-  return obj;
-}
-
-
-/**
- *  \brief Test if an element belongs to a set
- *  \param set The set
- *  \param obj The element
- *  \return TRUE if the element \a obj belongs to set \a set
- */
-int xbt_setset_set_belongs(xbt_setset_set_t set, void *obj)
-{
-  xbt_setset_elm_t e = (xbt_setset_elm_t) obj;
-  if (e->ID != 0 && e->ID <= set->size * BITS_INT) {
-    return _is_bit_set(e->ID % BITS_INT, set->bitmap[e->ID / BITS_INT]);
-  }
-  return FALSE;
-}
-
-int xbt_setset_set_size(xbt_setset_set_t set)
-{
-  unsigned int i;
-  int count = 0;
-
-  for (i = 0; i < set->size; i++)
-    count += bitcount(set->bitmap[i]);
-
-  return count;
-}
-
-
-/**
- *  \brief Add two sets
- *         Add two sets storing the result in the first one
- *  \param set1 The first set
- *  \param set2 The second set
- */
-void xbt_setset_add(xbt_setset_set_t set1, xbt_setset_set_t set2)
-{
-  unsigned int i;
-
-  /* Increase the size of set1 if necessary */
-  if (set1->size < set2->size) {
-    xbt_realloc(set1->bitmap, set2->size * sizeof(unsigned int));
-    set1->size = set2->size;
-  }
-
-  for (i = 0; i < set1->size; i++)
-    if (set2->bitmap[i] != 0)
-      set1->bitmap[i] |= set2->bitmap[i];
-
-  return;
-}
-
-/**
- *  \brief Substract two sets
- *         Substract two sets storing the result in the first one
- *  \param set1 The first set
- *  \param set2 The second set
- */
-void xbt_setset_substract(xbt_setset_set_t set1, xbt_setset_set_t set2)
-{
-  unsigned int i;
-
-  for (i = 0; i < MIN(set1->size, set2->size); i++)
-    if (set2->bitmap[i] != 0)
-      set1->bitmap[i] ^= set2->bitmap[i];
-
-  return;
-}
-
-/**
- *  \brief Intersect two sets
- *         Intersect two sets storing the result in the first one
- *  \param set1 The first set
- *  \param set2 The second set
- */
-void xbt_setset_intersect(xbt_setset_set_t set1, xbt_setset_set_t set2)
-{
-  unsigned int i;
-
-  for (i = 0; i < MIN(set1->size, set2->size); i++)
-    if (set1->bitmap[i] && set2->bitmap[i])
-      set1->bitmap[i] &= set2->bitmap[i];
-
-  return;
-}
-
-/* Get a cursor pointing to the first element of the set */
-void xbt_setset_cursor_first(xbt_setset_set_t set,
-                             xbt_setset_cursor_t * cursor)
-{
-  unsigned int i;
-  (*cursor) = xbt_new0(s_xbt_setset_cursor_t, 1);
-  (*cursor)->set = set;
-
-  for (i = 0; i < set->size; i++) {
-    if (set->bitmap[i] != 0) {
-      (*cursor)->idx = i * BITS_INT + ffs(set->bitmap[i]) - 1;
-      break;
-    }
-  }
-}
-
-/* Get the data pointed by a cursor */
-int xbt_setset_cursor_get_data(xbt_setset_cursor_t cursor, void **data)
-{
-  if (cursor->idx == 0) {
-    xbt_free(cursor);
-    *data = NULL;
-    return FALSE;
-  } else {
-    *data = _xbt_setset_idx_to_obj(cursor->set->setset, cursor->idx);
-    return TRUE;
-  }
-}
-
-/* Advance a cursor to the next element */
-void xbt_setset_cursor_next(xbt_setset_cursor_t cursor)
-{
-  unsigned int mask;
-  unsigned int data;
-  cursor->idx++;
-  while (cursor->idx < cursor->set->size * BITS_INT) {
-    if ((data = cursor->set->bitmap[cursor->idx / BITS_INT])) {
-      mask = 1 << cursor->idx % BITS_INT;
-      while (mask) {            /* FIXME: mask will never be 0! */
-        if (data & mask) {
-          return;
-        } else {
-          cursor->idx++;
-          mask <<= 1;
-        }
-      }
-    } else {
-      cursor->idx += BITS_INT;
-    }
-  }
-  cursor->idx = 0;
-}
-
-/* Check if the nth bit of an integer is set or not*/
-unsigned int _is_bit_set(unsigned int bit, unsigned int integer)
-{
-  return (0x1 << bit) & integer ? TRUE : FALSE;
-}
-
-/* Set the nth bit of an array of integers */
-void _set_bit(unsigned int bit, unsigned int *bitmap)
-{
-  bitmap[bit / BITS_INT] |= 0x1 << (bit % BITS_INT);
-}
-
-/* Unset the nth bit of an array of integers */
-void _unset_bit(unsigned int bit, unsigned int *bitmap)
-{
-  bitmap[bit / BITS_INT] &= ~(0x1 << (bit % BITS_INT));
-}
-
-/**
- * Bitcount function 
- * taken from http://graphics.stanford.edu/~seander/bithacks.html 
- * Note: it assumes 4 byte integers
- */
-int bitcount(int v)
-{
-  v = v - ((v >> 1) & 0x55555555);      // reuse input as temporary
-  v = (v & 0x33333333) + ((v >> 2) & 0x33333333);       // temp
-  return (((v + (v >> 4)) & 0xF0F0F0F) * 0x1010101) >> 24;      // count
-}
diff --git a/src/xbt/setset_private.h b/src/xbt/setset_private.h
deleted file mode 100644 (file)
index 3099ed1..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Copyright (c) 2010, 2014. 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. */
-
-#include "xbt/base.h"
-#include "xbt/dict.h"
-#include "xbt/dynar.h"
-#include "xbt/setset.h"
-#include "xbt/fifo.h"
-
-#define BITS_INT (8 * sizeof(int))
-
-typedef struct s_xbt_setset_elm {
-  XBT_SETSET_HEADERS;
-} s_xbt_setset_elm_t, *xbt_setset_elm_t;
-
-typedef union u_xbt_setset_elm_entry {
-  /* Information when the entry is being used */
-  struct {
-    xbt_setset_elm_t obj;
-  } info;
-  /* Information when the entry is free */
-  struct {
-    unsigned long next;
-  } free;
-} u_xbt_setset_elm_entry_t, *xbt_setset_elm_entry_t;
-
-typedef struct s_xbt_setset_set {
-  xbt_setset_t setset;          /* setset that contains this set */
-  unsigned int size;            /* in integers */
-  unsigned int *bitmap;         /* the bit array */
-} s_xbt_setset_set_t;
-
-typedef struct s_xbt_setset {
-  xbt_dynar_t elm_array;        /* of s_xbt_setset_elm_entry_t, to find elements by index */
-  xbt_fifo_t sets;              /* of s_xbt_setset_set_t, memberships in actual sets of setset */
-} s_xbt_setset_t;
-
-typedef struct s_xbt_setset_cursor {
-  int idx;                      /* Actual postition of the cursor (bit number) */
-  xbt_setset_set_t set;         /* The set associated to the cursor */
-} s_xbt_setset_cursor_t;
-
-/* Some internal functions */
-
-XBT_PRIVATE int bitcount(int);
-
-/* Get the object associated to a given index */
-XBT_PRIVATE void *_xbt_setset_idx_to_obj(xbt_setset_t setset, unsigned long idx);
-
-/* Check if the nth bit of an integer is set or not*/
-XBT_PRIVATE unsigned int _is_bit_set(unsigned int bit, unsigned int integer);
-
-/* Set the nth bit of an array of integers */
-XBT_PRIVATE void _set_bit(unsigned int bit, unsigned int *bitmap);
-
-/* Unset the nth bit of an array of integers */
-XBT_PRIVATE void _unset_bit(unsigned int bit, unsigned int *bitmap);
index cde489f..4be343f 100644 (file)
@@ -117,7 +117,6 @@ set(EXTRA_DIST
   src/xbt/mmalloc/mmtrace.awk
   src/xbt/mmalloc/mrealloc.c
   src/xbt/probes.h
   src/xbt/mmalloc/mmtrace.awk
   src/xbt/mmalloc/mrealloc.c
   src/xbt/probes.h
-  src/xbt/setset_private.h
   src/xbt/win32_ucontext.c
   tools/tesh/generate_tesh
   examples/smpi/mc/only_send_deterministic.tesh
   src/xbt/win32_ucontext.c
   tools/tesh/generate_tesh
   examples/smpi/mc/only_send_deterministic.tesh
@@ -267,7 +266,6 @@ set(XBT_SRC
   src/xbt/mallocator.c
   src/xbt/parmap.cpp
   src/xbt/set.c
   src/xbt/mallocator.c
   src/xbt/parmap.cpp
   src/xbt/set.c
-  src/xbt/setset.c
   src/xbt/snprintf.c
   src/xbt/swag.c
   src/xbt/xbt_log_appender_file.c
   src/xbt/snprintf.c
   src/xbt/swag.c
   src/xbt/xbt_log_appender_file.c
@@ -759,7 +757,6 @@ set(headers_to_install
   include/xbt/queue.h
   include/xbt/replay.h
   include/xbt/set.h
   include/xbt/queue.h
   include/xbt/replay.h
   include/xbt/set.h
-  include/xbt/setset.h
   include/xbt/str.h
   include/xbt/strbuff.h
   include/xbt/swag.h
   include/xbt/str.h
   include/xbt/strbuff.h
   include/xbt/swag.h
index 15aecc8..c5c38ee 100644 (file)
@@ -104,7 +104,7 @@ if(enable_model-checking AND enable_compile_optimizations)
       src/xbt/log.c src/xbt/xbt_log_appender_file.c
       src/xbt/xbt_log_layout_format.c src/xbt/xbt_log_layout_simple.c
       src/xbt/dict.c src/xbt/dict_elm.c src/xbt/dict_multi.c src/xbt/dict_cursor.c
       src/xbt/log.c src/xbt/xbt_log_appender_file.c
       src/xbt/xbt_log_layout_format.c src/xbt/xbt_log_layout_simple.c
       src/xbt/dict.c src/xbt/dict_elm.c src/xbt/dict_multi.c src/xbt/dict_cursor.c
-      src/xbt/set.c src/xbt/setset.c
+      src/xbt/set.c 
       src/xbt/dynar.c src/xbt/fifo.c src/xbt/heap.c src/xbt/swag.c
       src/xbt/str.c src/xbt/strbuff.c src/xbt/snprintf.c
       src/xbt/queue.c
       src/xbt/dynar.c src/xbt/fifo.c src/xbt/heap.c src/xbt/swag.c
       src/xbt/str.c src/xbt/strbuff.c src/xbt/snprintf.c
       src/xbt/queue.c
index 6435513..f31ff0f 100644 (file)
@@ -86,7 +86,6 @@ Section "Libraries and Headers" LibSection
        file @CMAKE_HOME_DIRECTORY@\include\xbt\graphxml.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\synchro_core.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\queue.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\graphxml.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\synchro_core.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\queue.h\r
-       file @CMAKE_HOME_DIRECTORY@\include\xbt\setset.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\mmalloc.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\parmap.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\automaton.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\mmalloc.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\parmap.h\r
        file @CMAKE_HOME_DIRECTORY@\include\xbt\automaton.h\r
@@ -320,7 +319,6 @@ section "Uninstall"
        delete $INSTDIR\include\xbt\synchro.h\r
        delete $INSTDIR\include\xbt\synchro_core.h\r
        delete $INSTDIR\include\xbt\queue.h\r
        delete $INSTDIR\include\xbt\synchro.h\r
        delete $INSTDIR\include\xbt\synchro_core.h\r
        delete $INSTDIR\include\xbt\queue.h\r
-       delete $INSTDIR\include\xbt\setset.h\r
        delete $INSTDIR\include\xbt\mmalloc.h\r
        delete $INSTDIR\include\xbt\replay_trace_reader.h\r
        delete $INSTDIR\include\xbt\parmap.h\r
        delete $INSTDIR\include\xbt\mmalloc.h\r
        delete $INSTDIR\include\xbt\replay_trace_reader.h\r
        delete $INSTDIR\include\xbt\parmap.h\r