jena2.5.4推理机系统的一种最基本实现 HP实验室出品

源代码在线查看: q-opt-3.rq

软件大小: 22172 K
上传用户: eeworm
关键词: jena 推理机 实验室
下载地址: 免注册下载 普通下载 VIP

相关代码

				# An optional and an fixed pattern
				PREFIX : 
				
				# Ensure an optional does not mask a later one.
				
				# This query works unreordered because it has written out the needed UNION
				
				SELECT * 
				WHERE 
				{
				  :x :p ?v .
				  OPTIONAL {:y ?p ?a } 
				  OPTIONAL {:z ?p ?v }
				}
				
				## SELECT DISTINCT *
				## {
				##   :x :p ?v .
				##     { OPTIONAL {:y ?p ?a }  OPTIONAL {:z ?p ?v } }
				##   UNION
				##     { OPTIONAL {:z ?p ?v }  OPTIONAL {:y ?p ?a } }
				## }
				
				
							

相关资源