3535import org .variantsync .diffdetective .util .IO ;
3636import org .variantsync .diffdetective .variation .DiffLinesLabel ;
3737import org .variantsync .diffdetective .variation .Label ;
38- import org .variantsync .diffdetective .variation .diff .Construction ;
38+ import org .variantsync .diffdetective .variation .diff .construction . GumTreeDiff ;
3939import org .variantsync .diffdetective .variation .diff .DiffNode ;
4040import org .variantsync .diffdetective .variation .diff .VariationDiff ;
4141import org .variantsync .diffdetective .variation .diff .Projection ;
5959 * This experiment computes the variation diff from
6060 * <ol>
6161 * <li>a line matching ({@link VariationDiffParser#createVariationDiff Viegener's algorithm}
62- * <li>a tree matching computed by Gumtree ({@link Construction #diffUsingMatching}
63- * <li>a hybrid matching ({@link Construction #improveMatching})
62+ * <li>a tree matching computed by Gumtree ({@link GumTreeDiff #diffUsingMatching}
63+ * <li>a hybrid matching ({@link GumTreeDiff #improveMatching})
6464 * </ol>
6565 * compares them using some quality metrics and stores timing statistics.
6666 *
@@ -291,7 +291,7 @@ public boolean analyzeVariationDiff(Analysis analysis) throws Exception, DiffPar
291291 afterVariationTree .assertConsistency ();
292292
293293 clock .start ();
294- final DiffNode <DiffLinesLabel > newVariationDiffRoot = Construction .diffUsingMatching (
294+ final DiffNode <DiffLinesLabel > newVariationDiffRoot = GumTreeDiff .diffUsingMatching (
295295 beforeVariationTree .getRoot ().projection (BEFORE ),
296296 afterVariationTree .getRoot ().projection (AFTER ),
297297 augmentedMatcher (statistics .variationDiff [1 ])
@@ -304,7 +304,7 @@ public boolean analyzeVariationDiff(Analysis analysis) throws Exception, DiffPar
304304 final VariationDiff <DiffLinesLabel > improvedVariationDiff = analysis .getCurrentVariationDiff ().deepCopy ();
305305 improvedVariationDiff .assertConsistency ();
306306 clock .start ();
307- Construction .improveMatching (improvedVariationDiff .getRoot (), augmentedMatcher (statistics .variationDiff [2 ]));
307+ GumTreeDiff .improveMatching (improvedVariationDiff .getRoot (), augmentedMatcher (statistics .variationDiff [2 ]));
308308 statistics .variationDiff [2 ].constructionDuration += clock .getPassedMilliseconds () - statistics .variationDiff [2 ].matchingDuration ;
309309 improvedVariationDiff .assertConsistency ();
310310
0 commit comments