Skip to Content
Hands-On Artificial Intelligence with Java for Beginners
book

Hands-On Artificial Intelligence with Java for Beginners

by Nisheeth Joshi
August 2018
Beginner
144 pages
3h 6m
English
Packt Publishing
Content preview from Hands-On Artificial Intelligence with Java for Beginners

Executing Prolog queries using Java

Now, we'll look at how to ask Prolog queries in Java. Let's get to the Java code and see how this can be done.

Create a Java project in NetBeans, and type the following code:

import java.util.Map;import jpl.Query;import jpl.JPL;public class ProrlogJava {    /**     * @param args the command line arguments     */    public static void main(String[] args) {        // TODO code application logic here        String t1 = "consult('/Users/admin/Documents/NetBeansProjects/JPLwJava/family.pl')";        System.out.println(t1 + " " + (Query.hasSolution(t1) ? "succeeded" : "failed"));        String t2 = "child(sonny, vito)";        System.out.println(t2 + " " + (Query.hasSolution(t2) ? "provable" : "not provable"));        String t3 = "grandfather(vito, anthony)"; System.out.println(t3 ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Machine Learning: End-to-End guide for Java developers

Machine Learning: End-to-End guide for Java developers

Richard M. Reese, Jennifer L. Reese, Boštjan Kaluža, Dr. Uday Kamath, Krishna Choppella
Mastering Java Machine Learning

Mastering Java Machine Learning

Uday Kamath, Krishna Choppella

Publisher Resources

ISBN: 9781789537550Supplemental Content