All Downloads are FREE. Search and download functionalities are using the official Maven repository.

query.solution.rq Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
#
# xt:solution() may reject solution mapping according to some criteria
#
select * where {
  bind (unnest(xt:iota(100)) as ?n)
}

function xt:solution(?q, ?ms) {
  for (?m in ?ms){
    for (?n in ?m){
      if (! xt:prime(?n)){
	xt:reject(?m)
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy