Class EditDistanceComputeParams
Inherited Members
Namespace: SdlSdl.TranslationStudioAutomationIntegrationApi
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 |
---|---|
bool |
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 |
---|---|
bool |
ComputeDiagonalOnly
If number of tokens is equivalent, only the diagonal's similarities are computed.
Declaration
public bool ComputeDiagonalOnly { get; set; }
Property Value
Type | Description |
---|---|
bool |
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 |
---|---|
bool |