You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
3.2 KiB
146 lines
3.2 KiB
//==============================================================================
|
|
//
|
|
// Copyright (c) 2002-
|
|
// Authors:
|
|
// * Dave Parker <david.parker@comlab.ox.ac.uk> (University of Oxford)
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// This file is part of PRISM.
|
|
//
|
|
// PRISM 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 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// PRISM 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 PRISM; if not, write to the Free Software Foundation,
|
|
// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
//
|
|
//==============================================================================
|
|
|
|
package explicit;
|
|
|
|
import java.util.*;
|
|
|
|
/**
|
|
* Class storing an indexed set of objects of type T.
|
|
* Typically used for storing state space during reachability.
|
|
*/
|
|
public class IndexedSet<T>
|
|
{
|
|
private Map<T, Integer> set;
|
|
private int indexOfLastAdd;
|
|
|
|
public IndexedSet()
|
|
{
|
|
this(false);
|
|
}
|
|
|
|
public IndexedSet(boolean sorted)
|
|
{
|
|
set = sorted ? new TreeMap<T, Integer>() : new HashMap<T, Integer>();
|
|
indexOfLastAdd = -1;
|
|
}
|
|
|
|
public boolean add(T state)
|
|
{
|
|
Integer i = set.get(state);
|
|
if (i != null) {
|
|
indexOfLastAdd = i;
|
|
return false;
|
|
} else {
|
|
indexOfLastAdd = set.size();
|
|
set.put(state, set.size());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public boolean contains(T state)
|
|
{
|
|
return set.get(state) != null;
|
|
}
|
|
|
|
public int getIndexOfLastAdd()
|
|
{
|
|
return indexOfLastAdd;
|
|
}
|
|
|
|
public boolean isEmpty()
|
|
{
|
|
return set.isEmpty();
|
|
}
|
|
|
|
/**
|
|
* Get the number of objects stored in the set.
|
|
*/
|
|
public int size()
|
|
{
|
|
return set.size();
|
|
}
|
|
|
|
/**
|
|
* Get access to the underlying set of map entries.
|
|
*/
|
|
public Set<Map.Entry<T, Integer>> getEntrySet()
|
|
{
|
|
return set.entrySet();
|
|
}
|
|
|
|
/**
|
|
* Create an ArrayList of the states, ordered by index.
|
|
*/
|
|
public ArrayList<T> toArrayList()
|
|
{
|
|
ArrayList<T> list = new ArrayList<T>(set.size());
|
|
toArrayList(list);
|
|
return list;
|
|
}
|
|
|
|
/**
|
|
* Create an ArrayList of the states, ordered by index, storing in the passed in list.
|
|
* @param storeHere: An empty ArrayList in which to store the result.
|
|
*/
|
|
public void toArrayList(ArrayList<T> list)
|
|
{
|
|
int i, n;
|
|
|
|
n = set.size();
|
|
for (i = 0; i < n ; i++)
|
|
list.add(null);
|
|
for (Map.Entry<T, Integer> e : set.entrySet()) {
|
|
list.set(e.getValue(), e.getKey());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build sort permutation. Assuming this was built as a sorted set,
|
|
* this returns a permutation (integer array) mapping current indices
|
|
* to new indices under the sorting order.
|
|
*/
|
|
public int[] buildSortingPermutation()
|
|
{
|
|
int i, n;
|
|
int perm[];
|
|
|
|
n = set.size();
|
|
perm = new int[n];
|
|
i = 0;
|
|
for (Map.Entry<T, Integer> e : set.entrySet()) {
|
|
perm[e.getValue()] = i++;
|
|
}
|
|
|
|
return perm;
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return set.toString();
|
|
}
|
|
}
|