/** * Copyright (c) 2012 Microsoft Corporation * @author Christoph M. Wintersteiger (cwinter) **/ package com.microsoft.z3; class FixedpointDecRefQueue extends IDecRefQueue { protected void incRef(Context ctx, long obj) { try { Native.fixedpointIncRef(ctx.nCtx(), obj); } catch (Z3Exception e) { // OK. } } protected void decRef(Context ctx, long obj) { try { Native.fixedpointDecRef(ctx.nCtx(), obj); } catch (Z3Exception e) { // OK. } } };