Skip to content

Commit

Permalink
167 dockter 1 (#169)
Browse files Browse the repository at this point in the history
* #167 Update to template

* #167 Modified parameter names

* #167 Prepare for versioned release
  • Loading branch information
docktermj authored Jun 13, 2024
1 parent a416f66 commit f34e486
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [0.13.4] - 2024-06-13

### Changed in 0.13.4

- Updated to changed in native Senzing C API

## [0.13.3] - 2024-06-11

### Changed in 0.13.3
Expand Down
2 changes: 1 addition & 1 deletion senzing/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const (

/* flags for finding entity path data */

SzFindPathPreferExclude // 25 excluded entities are still allowed, but not preferred
SzFindPathStrictAvoid // 25 excluded entities are still allowed, but not preferred

/* flags for including search result feature scores */

Expand Down
4 changes: 2 additions & 2 deletions senzing/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ type SzEngine interface {
FindInterestingEntitiesByRecordID(ctx context.Context, dataSourceCode string, recordID string, flags int64) (string, error)
FindNetworkByEntityID(ctx context.Context, entityIDs string, maxDegrees int64, buildOutDegree int64, buildOutMaxEntities int64, flags int64) (string, error)
FindNetworkByRecordID(ctx context.Context, recordKeys string, maxDegrees int64, buildOutDegree int64, buildOutMaxEntities int64, flags int64) (string, error)
FindPathByEntityID(ctx context.Context, startEntityID int64, endEntityID int64, maxDegrees int64, exclusions string, requiredDataSources string, flags int64) (string, error)
FindPathByRecordID(ctx context.Context, startDataSourceCode string, startRecordID string, endDataSourceCode string, endRecordID string, maxDegrees int64, exclusions string, requiredDataSources string, flags int64) (string, error)
FindPathByEntityID(ctx context.Context, startEntityID int64, endEntityID int64, maxDegrees int64, avoidEntityIDs string, requiredDataSources string, flags int64) (string, error)
FindPathByRecordID(ctx context.Context, startDataSourceCode string, startRecordID string, endDataSourceCode string, endRecordID string, maxDegrees int64, avoidRecordKeys string, requiredDataSources string, flags int64) (string, error)
GetActiveConfigID(ctx context.Context) (int64, error)
GetEntityByEntityID(ctx context.Context, entityID int64, flags int64) (string, error)
GetEntityByRecordID(ctx context.Context, dataSourceCode string, recordID string, flags int64) (string, error)
Expand Down
2 changes: 1 addition & 1 deletion senzing/senzing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ var testCases = []struct {
},
{ // 26
name: "SZ_FIND_PATH_PREFER_EXCLUDE",
actual: SzFindPathPreferExclude,
actual: SzFindPathStrictAvoid,
expected: 0x0000000002000000,
},
{ // 27
Expand Down

0 comments on commit f34e486

Please sign in to comment.