Provide functions to read symptoms, write possible illness and associated tests and treatments of disease list using SWI-Prolog.
This program was created for CS355: Principles of Programming Languages at Old Dominion University during Spring 2018.
You will need SWI-Prolog:
sudo apt install swi-prolog
To start run the following from the src directory and consult the diseases dictionary:
$ swipl -s analyzer.pl
?- consult('diseases.pl').
$ swipl -s analyzer.pl
?- consult('diseases.pl').
true.
?- howtotest(typhoid).
blood
true.
Enter halt.
to exit SWI-Prolog.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Patrick Cox - Contributor - paddy74
This project is licensed under the MIT License - See the LICENSE.md file for details.
- The course professor Jay Morris