Class EditDistanceComputeParams
Inheritance
Object
EditDistanceComputeParams
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.TranslationStudioAutomation.IntegrationApi
Assembly: Sdl.TranslationStudioAutomation.IntegrationApi.dll
Syntax
public class EditDistanceComputeParams
Constructors
EditDistanceComputeParams()
Declaration
public EditDistanceComputeParams()
Properties
ApplySmallChangeAdjustment
Applies small change adjustments.
Declaration
public bool ApplySmallChangeAdjustment { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
CharactersNormalizeSafely
Set to false if the language is not considered 'char-based' like Chinese and Japanese are (i.e. uses space as separator), but does consist of complex characters producing strings of more than 1 significant char when Unicode-normalised (NormalizationForm.FormD)
Declaration
public bool CharactersNormalizeSafely { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ComputeDiagonalOnly
If number of tokens is equivalent, only the diagonal's similarities are computed.
Declaration
public bool ComputeDiagonalOnly { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
DiagonalOnly
Unlike ComputeDiagonalOnly, should only be set true if number of tokens is equivalent, and if the only edit operations of interest are 'identity' and 'change'. This provides a fast way to score segments with matching identity strings and feature-token placement.
Declaration
public bool DiagonalOnly { get; set; }
Property Value
Type | Description |
---|---|
Boolean |