Package | Description |
---|---|
de.citec.tcs.alignment |
This module defines the interface for AlignmentAlgorithms as
well as some helper classes.
|
de.citec.tcs.alignment.sequence |
This module contains the sequence datastructure of the
TCS Alignment Toolbox.
|
Modifier and Type | Method and Description |
---|---|
Node |
Operation.getLeft() |
Node |
Operation.getRight() |
Modifier and Type | Method and Description |
---|---|
static double |
SoftDTWModel.calc_weighted_comp_sum(Comparator[] comparators,
double[] weights,
int[] originalIndices,
Node nodeX,
Node nodeY)
Returns weighted sum k of local comparators: k = sum(w_i * k_i) with:
k_i: local comparators w_i: local weights
Note: Comparators, weights, originalIndices are supposed to originate
from the same AlignmentSpecification.
|
static double[] |
Operation.calculateComparatorDistances(OperationType op,
Node left,
Node right,
AlignmentSpecification spec) |
double[] |
AlignmentSpecification.calculateDeletionCosts(Node a)
This calculates the non-weighted costs for deleting the single values in
node a.
|
double[] |
AlignmentSpecification.calculateInsertionCosts(Node b)
This calculates the non-weighted costs for inserting the single values of
node b.
|
double[] |
AlignmentSpecification.calculateReplacementCosts(Node a,
Node b)
This calculates the non-weighted costs for replacing the single values in
node a by the values in node b.
|
double[] |
AlignmentSpecification.calculateSkipDeletionCosts(Node a)
This calculates the non-weighted costs for skip-deleting the single
values in node a.
|
double[] |
AlignmentSpecification.calculateSkipInsertionCosts(Node b)
This calculates the non-weighted costs for skip-inserting the single
values of node b.
|
Constructor and Description |
---|
Operation(Node left,
Node right,
OperationType type,
AlignmentPath path)
This constructs an Operation within an AlignmentPath.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<Node> |
Sequence.getNodes()
Returns the actual list of nodes.
|
Copyright (C) 2013-2015 Benjamin Paaßen, Georg Zentgraf, AG Theoretical Computer Science, Centre of Excellence Cognitive Interaction Technology (CITEC), University of Bielefeld, licensed under the AGPL v. 3: http://openresearch.cit-ec.de/projects/tcs . This documentation is licensed under the conditions of CC-BY-SA 4.0: https://creativecommons.org/licenses/by-sa/4.0/