/usr/include/polybori/ring/CCuddInterface.h is in libbrial-dev 1.2.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | // -*- c++ -*-
//*****************************************************************************
/** @file CCuddInterface.h
*
* @author Alexander Dreyer
* @date 2007-07-05
*
* This files defines a replacement for the decision diagram manager of CUDD's
* C++ interface.
*
* @par Copyright:
* (c) 2007-2010 by The PolyBoRi Team
**/
//*****************************************************************************
#ifndef polybori_ring_CCuddInterface_h_
#define polybori_ring_CCuddInterface_h_
// include basic definitions
#include <polybori/pbori_defs.h>
#include <polybori/cudd/cudd.h>
#include <polybori/cudd/cuddInt.h>
#include <polybori/routines/pbori_func.h> // handle_error
#include "CCallbackWrapper.h"
#include <vector>
#include <boost/intrusive_ptr.hpp>
#include <boost/scoped_array.hpp>
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/seq/for_each.hpp>
#include <boost/preprocessor/facilities/expand.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <polybori/except/PBoRiError.h>
#include <stdexcept>
#include <algorithm>
#include <polybori/common/CWeakPtrFacade.h>
// get PBORI_PREFIX(cudd error) texts
inline const char* error_text(PBORI_PREFIX(DdManager)* mgr) {
switch (PBORI_PREFIX(Cudd_ReadErrorCode)(mgr)) {
case CUDD_MEMORY_OUT:
return("Out of memory.");
case CUDD_TOO_MANY_NODES:
return("To many nodes.");
case CUDD_MAX_MEM_EXCEEDED:
return("Maximum memory exceeded.");
case CUDD_INVALID_ARG:
return("Invalid argument.");
case CUDD_INTERNAL_ERROR:
return("Internal error.");
case CUDD_TIMEOUT_EXPIRED:
return("Timed out.");
case CUDD_NO_ERROR:
return("No error. (Should not reach here!)");
}
return("Unexpected error.");
}
/// Increment reference count
inline void
intrusive_ptr_add_ref(PBORI_PREFIX(DdManager)* ptr){
++(ptr->hooks);
}
/// Release current pointer by decrementing reference counting
inline void
intrusive_ptr_release(PBORI_PREFIX(DdManager)* ptr) {
if (!(--(ptr->hooks))) {
PBORI_ASSERT(PBORI_PREFIX(Cudd_CheckZeroRef)(ptr) == 0);
PBORI_PREFIX(Cudd_Quit)(ptr);
}
}
BEGIN_NAMESPACE_PBORI
typedef PBORI_PREFIX(DdManager) DdManager;
/// @name Define templates for generating member functions from CUDD procedures
//@{
#define PB_CUDDMGR_READ(count, data, funcname) data funcname() const { \
return BOOST_PP_CAT(PBORI_PREFIX(Cudd_), funcname)(*this); }
#define PB_CUDDMGR_SWITCH(count, data, funcname) void funcname() { \
BOOST_PP_CAT(PBORI_PREFIX(Cudd_), funcname)(*this); }
#define PB_CUDDMGR_SET(count, data, funcname) void funcname(data arg) { \
BOOST_PP_CAT(PBORI_PREFIX(Cudd_), funcname)(*this, arg); }
//@}
/** @class CCuddInterface
* @brief This class defines a C++ interface to @c CUDD's decicion diagram
* manager.
*
* The purpose of this wrapper is just to provide an efficient and save way of
* handling the decision diagram management. It corrects some short-comings of
* CUDD's built-in interface.
*
* @attention This class is intented for internal use only.
* Use the highlevel classes CDDManager<CCuddInterface> or BoolePolyRing
* instead.
**/
class CCuddInterface:
public CTypes::auxtypes_type {
/// Type of *this
typedef CCuddInterface self;
public:
/// Type of Cudd's decision diagrams
typedef DdNode* node_ptr;
/// Type of Cudd decision diagram manager
typedef DdManager mgr_type;
typedef int cudd_idx_type;
typedef node_ptr (*unary_int_function)(mgr_type*, cudd_idx_type);
typedef node_ptr (*void_function)(mgr_type*);
/// Smart pointer to Cudd manager
typedef boost::intrusive_ptr<mgr_type> mgr_ptr;
/// Initialize CUDD-like decision diagram manager
CCuddInterface(size_type numVars, size_type numVarsZ,
size_type numSlots = PBORI_UNIQUE_SLOTS,
size_type cacheSize = PBORI_CACHE_SLOTS,
unsigned long maxMemory = PBORI_MAX_MEMORY):
p_mgr(init(numVars, numVarsZ, numSlots, cacheSize, maxMemory)),
m_vars(numVarsZ) {
for (idx_type idx = 0; size_type(idx) < numVarsZ; ++idx) initVar(m_vars[idx], idx);
}
/// Copy constructor
CCuddInterface(const self& rhs): p_mgr(rhs.p_mgr), m_vars(rhs.m_vars) {
std::for_each(m_vars.begin(), m_vars.end(), PBORI_PREFIX(Cudd_Ref));
}
/// Destructor
~CCuddInterface() {
std::for_each(m_vars.begin(), m_vars.end(),
callBack(&self::recursiveDeref));
}
/// Get pure CUDD structure
mgr_type* getManager() const { return p_mgr.operator->(); }
/// Get (shared) pointer to initialized manager
mgr_ptr pManager() const { return p_mgr; }
/// Assignment operation
self& operator=(const self & right) {
p_mgr = right.p_mgr;
return *this;
}
/// Get ZDD variable
node_ptr zddVar(idx_type idx) const { return apply(PBORI_PREFIX(Cudd_zddIthVar), idx); }
/// Get 1-terminal for ZDDs
node_ptr zddOne(idx_type iMax) const { return apply(PBORI_PREFIX(Cudd_ReadZddOne), iMax); }
/// Get 0-terminal for ZDDs
node_ptr zddZero() const { return apply(PBORI_PREFIX(Cudd_ReadZero)); }
/// Get 1-terminal for ZDDs
node_ptr zddOne() const {
return checkedResult(DD_ONE(getManager()));
}
#ifdef CUDD_ORIGINAL_INCLUSION
/// @name Member functions mimicking/interfacing with CUDD procedures
/// @note See preprocessor generated members below
//@{
int ReorderingStatusZdd(PBORI_PREFIX(Cudd_ReorderingType) * method) const {
return PBORI_PREFIX(Cudd_ReorderingStatusZdd)(*this, method);
}
/// @note unused (do not use permutations if the variables)
idx_type ReadPermZdd(idx_type idx) const {
return PBORI_PREFIX(Cudd_ReadPermZdd)(*this, idx);
}
/// @note unused (do not use permutations if the variables)
idx_type ReadInvPermZdd(idx_type idx) const {
return PBORI_PREFIX(Cudd_ReadInvPermZdd)(*this, idx);
}
void AddHook(DD_HFP f, PBORI_PREFIX(Cudd_HookType) where) {
checkedResult(PBORI_PREFIX(Cudd_AddHook)(*this, f, where));
}
void RemoveHook(DD_HFP f, PBORI_PREFIX(Cudd_HookType) where) {
checkedResult(PBORI_PREFIX(Cudd_RemoveHook)(*this, f, where));
}
int IsInHook(DD_HFP f, PBORI_PREFIX(Cudd_HookType) where) const {
return PBORI_PREFIX(Cudd_IsInHook)(*this, f, where);
}
void EnableReorderingReporting() {
checkedResult(PBORI_PREFIX(Cudd_EnableReorderingReporting)(*this));
}
void DisableReorderingReporting() {
checkedResult(PBORI_PREFIX(Cudd_DisableReorderingReporting)(*this));
}
void DebugCheck(){ checkedResult(PBORI_PREFIX(Cudd_DebugCheck)(*this)); }
void CheckKeys(){ checkedResult(PBORI_PREFIX(Cudd_CheckKeys)(*this)); }
void PrintLinear() { checkedResult(PBORI_PREFIX(Cudd_PrintLinear)(*this)); }
int ReadLinear(int x, int y) { return PBORI_PREFIX(Cudd_ReadLinear)(*this, x, y); }
size_type Prime(size_type pr) const { return PBORI_PREFIX(Cudd_Prime)(pr); }
void PrintVersion(FILE * fp) const { std::cout.flush(); PBORI_PREFIX(Cudd_PrintVersion)(fp); }
void zddPrintSubtable() const{
std::cout.flush();
PBORI_PREFIX(Cudd_zddPrintSubtable)(*this);
}
void zddReduceHeap(PBORI_PREFIX(Cudd_ReorderingType) heuristic, int minsize) {
checkedResult(PBORI_PREFIX(Cudd_zddReduceHeap)(*this, heuristic, minsize));
}
void zddShuffleHeap(int * permutation) {
checkedResult(PBORI_PREFIX(Cudd_zddShuffleHeap)(*this, permutation));
}
void zddSymmProfile(int lower, int upper) const {
PBORI_PREFIX(Cudd_zddSymmProfile)(*this, lower, upper);
}
/// @note Preprocessor generated members
/// @code
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_SET, size_type,
(SetMinHit)(SetLooseUpTo)(SetMaxCacheHard)(SetMaxLive) )
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_SET, int,
(SetSiftMaxVar)(SetSiftMaxSwap)(SetRecomb)(SetSymmviolation)
(SetArcviolation)(SetPopulationSize)(SetNumberXovers)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_SET, FILE*, (SetStdout)(SetStderr))
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_SWITCH, BOOST_PP_NIL,
(zddRealignEnable)(zddRealignDisable)
(AutodynDisableZdd)
(EnableGarbageCollection)(DisableGarbageCollection)
(TurnOnCountDead)(TurnOffCountDead)(ClearErrorCode)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, double,
(ReadCacheUsedSlots)(ReadCacheLookUps)(ReadCacheHits)
(ReadSwapSteps)(ReadMaxGrowth)(AverageDistance)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, size_type,
(ReadCacheSlots)(ReadMinHit)(ReadLooseUpTo)(ReadMaxCache)
(ReadMaxCacheHard)(ReadSlots)(ReadKeys)(ReadDead)(ReadMinDead)
(ReadNextReordering)(ReadMaxLive)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, int,
(zddRealignmentEnabled)(ReadZddSize)(ReadReorderings)(ReadSiftMaxVar)
(ReadSiftMaxSwap)(ReadGarbageCollections)(GarbageCollectionEnabled)
(DeadAreCounted)(ReadRecomb)
(ReadPopulationSize)(ReadSymmviolation)(ReadArcviolation)
(ReadNumberXovers)(ReorderingReporting)(ReadErrorCode)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, long,
(ReadReorderingTime)(ReadGarbageCollectionTime)
(ReadPeakNodeCount)(zddReadNodeCount)
)
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, large_size_type,
(ReadMemoryInUse)(ReadMaxMemory) )
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, FILE*, (ReadStdout)(ReadStderr))
PB_CUDDMGR_SET(BOOST_PP_NIL, PBORI_PREFIX(Cudd_ReorderingType), AutodynEnableZdd)
PB_CUDDMGR_SET(BOOST_PP_NIL, unsigned long, SetMaxMemory)
PB_CUDDMGR_SET(BOOST_PP_NIL, double, SetMaxGrowth)
/** @endcode */
///
//@}
#else
BOOST_PP_SEQ_FOR_EACH(PB_CUDDMGR_READ, int,(ReadZddSize))
#endif
node_ptr getVar(idx_type idx) const {
if PBORI_UNLIKELY(size_type(idx) >= m_vars.size())
throw PBoRiError(CTypes::out_of_bounds);
return m_vars[idx];
}
/// Get number of managed variables
size_type nVariables() const { return (size_type)ReadZddSize(); }
/// clear all temporarily stored data
void cacheFlush() { PBORI_PREFIX(cuddCacheFlush)(*this); }
protected:
/// initialized CUDD decision diagrma manager, check it and start reference counting
mgr_ptr init(size_type numVars,size_type numVarsZ, size_type numSlots,
size_type cacheSize, large_size_type maxMemory) {
DdManager* ptr = PBORI_PREFIX(Cudd_Init)(numVars, numVarsZ, numSlots, cacheSize, maxMemory);
if PBORI_UNLIKELY(ptr==NULL)
throw PBoRiError(CTypes::failed);
ptr->hooks = NULL; // abusing hooks pointer for reference counting
return ptr;
}
/// Generate check result of previous node operation and convert
node_ptr checkedResult(node_ptr result) const {
checkedResult(int(result != NULL));
return result;
}
/// Generate check numerical result of previous operation
void checkedResult(int result) const {
if PBORI_UNLIKELY(result == 0) {
throw std::runtime_error(error_text(*this));
}
}
/// Apply function to given index
node_ptr apply(unary_int_function func, idx_type idx) const {
return checkedResult(func(*this, idx) );
}
/// Call function
node_ptr apply(void_function func) const {
return checkedResult(func(*this) );
}
protected:
/// Dereferencing of diagram node
void recursiveDeref(node_ptr node) const {
PBORI_PREFIX(Cudd_RecursiveDerefZdd)(*this, node);
}
/// Generate raw variable
void initVar(node_ptr& node, idx_type idx) const {
PBORI_PREFIX(Cudd_Ref)(node = PBORI_PREFIX(cuddUniqueInterZdd)(*this,
idx, zddOne(), zddZero()));
}
/// Wrapping memeber function as functional
template <class MemberFuncPtr>
CCallbackWrapper<MemberFuncPtr>
callBack(MemberFuncPtr ptr) {
return CCallbackWrapper<MemberFuncPtr>(*this, ptr);
}
private:
/// Implicit cast to pure CUDD structure (only accesible here)
operator mgr_type*() const { return getManager(); }
/// Smart pointer to Cudd maanger
mgr_ptr p_mgr;
/// Variable cache
std::vector<node_ptr> m_vars;
}; // CCuddInterface
#undef PB_CUDDMGR_READ
#undef PB_CUDDMGR_SWITCH
#undef PB_CUDDMGR_SET
END_NAMESPACE_PBORI
#endif
|