diff --git a/src/priv/Makefile.am b/src/priv/Makefile.am
index 6cec370d0..595c82701 100644
--- a/src/priv/Makefile.am
+++ b/src/priv/Makefile.am
@@ -21,8 +21,6 @@ AM_CPPFLAGS = -I$(srcdir)/.. -I.. $(BUDDY_CPPFLAGS)
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
noinst_HEADERS = \
- acccompl.hh \
- accconv.hh \
accmap.hh \
bddalloc.hh \
countstates.hh \
@@ -30,10 +28,6 @@ noinst_HEADERS = \
noinst_LTLIBRARIES = libpriv.la
libpriv_la_SOURCES = \
- acccompl.cc \
- accconv.cc \
bddalloc.cc \
countstates.cc \
freelist.cc
-
-
diff --git a/src/priv/acccompl.cc b/src/priv/acccompl.cc
deleted file mode 100644
index 17c01e1fa..000000000
--- a/src/priv/acccompl.cc
+++ /dev/null
@@ -1,88 +0,0 @@
-// -*- coding: utf-8 -*-
-// Copyright (C) 2012, 2014 Laboratoire de Recherche et Developpement
-// de l'Epita (LRDE)
-//
-// This file is part of Spot, a model checking library.
-//
-// Spot is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 3 of the License, or
-// (at your option) any later version.
-//
-// Spot is distributed in the hope that it will be useful, but WITHOUT
-// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
-// License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-#include "acccompl.hh"
-#include
-
-namespace spot
-{
- // If ALL = a!b!c + !ab!c + !a!bc", the negation of ACC = a!b!c is
- // RES = bc. We do that by computing ALL-ACC and enumerating
- // all positive variables in the remaining products.
- bdd acc_compl::complement(const bdd& acc)
- {
- bdd_cache_t::const_iterator it = cache_.find(acc);
- if (it != cache_.end())
- return it->second;
-
- bdd res = bddtrue;
- bdd n = all_ - acc;
-
- while (n != bddfalse)
- {
- bdd cond = bdd_satone(n);
- bdd oldcond = cond;
- n -= cond;
-
- while (bdd_high(cond) == bddfalse)
- cond = bdd_low(cond);
-
- // Here we want to keep only the current one.
- // tmp is only useful to keep the value and cache it.
- bdd tmp = bdd_ithvar(bdd_var(cond));
- res &= tmp;
- }
-
- cache_[acc] = res;
-
- return res;
- }
-
- bdd acc_compl::reverse_complement(const bdd& acc)
- {
- // We are sure that if we have no acceptance condition the result
- // is all_.
- if (acc == bddtrue)
- return all_;
-
- assert(acc != bddfalse);
-
- // Since we never cache a unique positive bdd, we can reuse the
- // same cache. In fact the only kind of acc we will receive in
- // this method, are a conjunction of positive acceptance
- // conditions. (i.e., "ab" and not "a!b + !ab")
- bdd_cache_t::const_iterator it = cache_.find(acc);
- if (it != cache_.end())
- return it->second;
-
- bdd res = all_;
- bdd cond = acc;
- bdd neg = bddtrue;
- while (cond != bddtrue)
- {
- neg &= bdd_nithvar(bdd_var(cond));
- cond = bdd_high(cond);
- }
- res &= neg;
- cache_[acc] = res;
-
- return res;
- }
-
-} // End namespace spot.
diff --git a/src/priv/acccompl.hh b/src/priv/acccompl.hh
deleted file mode 100644
index f65bf1074..000000000
--- a/src/priv/acccompl.hh
+++ /dev/null
@@ -1,56 +0,0 @@
-// -*- coding: utf-8 -*-
-// Copyright (C) 2012, 2013, 2014 Laboratoire de Recherche et
-// Developpement de l'Epita (LRDE)
-//
-// This file is part of Spot, a model checking library.
-//
-// Spot is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 3 of the License, or
-// (at your option) any later version.
-//
-// Spot is distributed in the hope that it will be useful, but WITHOUT
-// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
-// License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see .
-
-
-#ifndef SPOT_PRIV_ACCCOMPL_HH
-# define SPOT_PRIV_ACCCOMPL_HH
-
-#include