Enum EditDistanceResolution
Enumerates the types of resolving edit distance differences.
Namespace: Sdl.LanguagePlatform.Core.EditDistance
Assembly: Sdl.LanguagePlatform.Core.dll
Syntax
public enum EditDistanceResolution
Fields
| Name | Description |
|---|---|
| Deletion | The change can be resolved by deleting the token - this is only used if the document source doesn't contain any tags but the memory TU does. |
| Move | The change is resolved by moving an item to another location. |
| None | The edit distance cannot be resolved. |
| Other | The change cannot be resolved but the difference should still not be reflected in the score. |
| Substitution | The token is automatically substituted by copying over from the related document token to the location determined by the memory TU. |