From 440a1b5284d810ba6206d29d8e414eac518d43ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr> Date: Fri, 16 Sep 2011 20:57:35 +0000 Subject: [PATCH] - Added BasicAlignment.deleteAllCells() --- html/relnotes.html | 1 + src/fr/inrialpes/exmo/align/impl/BasicAlignment.java | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/html/relnotes.html b/html/relnotes.html index 8f9c27c0..50f99d85 100644 --- a/html/relnotes.html +++ b/html/relnotes.html @@ -70,6 +70,7 @@ with a warning: <li>Changed default type of <tt>StringDistAlignment</tt> to "?*" for preserving the previous behaviour (impl)</li> <li>Added level lines in the triangle display of <tt>GroupEval</tt> (util)</li> +<li>Added <tt>BasicAlignment.deleteAllCells()</tt> (impl)</li> <li>Suppressed the guard for applying the Hungarian algorithm to equisimilarity situations (impl)</li> <li>Fixed a bug on <tt>DistanceAlignment</tt> 1:1 extraction when the diff --git a/src/fr/inrialpes/exmo/align/impl/BasicAlignment.java b/src/fr/inrialpes/exmo/align/impl/BasicAlignment.java index d9a9ffd8..c954b296 100644 --- a/src/fr/inrialpes/exmo/align/impl/BasicAlignment.java +++ b/src/fr/inrialpes/exmo/align/impl/BasicAlignment.java @@ -248,6 +248,11 @@ public class BasicAlignment implements Alignment { return array; } + public void deleteAllCells() { + hash1 = new Hashtable<Object,Set<Cell>>(); + hash2 = new Hashtable<Object,Set<Cell>>(); + } + /** Cell methods **/ public Cell addAlignCell( String id, Object ob1, Object ob2, Relation relation, double measure, Extensions extensions ) throws AlignmentException { Cell cell = createCell( id, ob1, ob2, relation, measure); -- GitLab