We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Not sure if this is a mistake/regression or is it due to recent changes in OWL-API. Anyway it is a bug of ONT-API. The testcase:
OWLDataFactory owlapi = OntManagers.createOWL().getOWLDataFactory(); DataFactory ontapi = OntManagers.getDataFactory(); String value = "1922"; OWL2Datatype dt = OWL2Datatype.XSD_POSITIVE_INTEGER; OWLLiteral x = owlapi.getOWLLiteral(value, dt); OWLLiteral z = ontapi.getOWLLiteral(value, dt); System.out.println(x.hashCode() + " ? " + z.hashCode()); Assert.assertEquals(x, z);
The text was updated successfully, but these errors were encountered:
ont-api: change OWLLiteral equals/hashCode behaviour for numeric data…
8ecf250
…types, add tests (fix issue #13)
done
Sorry, something went wrong.
No branches or pull requests
Not sure if this is a mistake/regression or is it due to recent changes in OWL-API.
Anyway it is a bug of ONT-API.
The testcase:
The text was updated successfully, but these errors were encountered: