Skip to content

Commit eb5e913

Browse files
committed
fixed compiling bug
1 parent 19545d2 commit eb5e913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ldbc/snb/datagen/generator/DistanceKnowsGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void createKnow( Person personA, Person personB ) {
4949
creationDate = creationDate - personA.creationDate() >= DatagenParams.deltaTime ? creationDate : creationDate + (DatagenParams.deltaTime - (creationDate - personA.creationDate()));
5050
creationDate = creationDate - personB.creationDate() >= DatagenParams.deltaTime ? creationDate : creationDate + (DatagenParams.deltaTime - (creationDate - personB.creationDate()));
5151
if( creationDate <= Dictionaries.dates.getEndDateTime() ) {
52-
float similarity = Person.Similarity(personA,personB);
52+
float similarity = Person.personSimilarity.Similarity(personA,personB);
5353
personB.knows().add(new Knows(personA, creationDate, similarity));
5454
personA.knows().add(new Knows(personB, creationDate, similarity));
5555
}

0 commit comments

Comments
 (0)