#!/bin/bash # n3-to-n3p is any tool translating Notation3 to Notation3 P-code e.g. eye --n3p "$@" n3-to-n3p test-relations-10.n3 > test-relations-10.n3p n3-to-n3p test-relations-100.n3 > test-relations-100.n3p n3-to-n3p test-relations-1000.n3 > test-relations-1000.n3p n3-to-n3p test-relations-10000.n3 > test-relations-10000.n3p n3-to-n3p test-relations-100000.n3 > test-relations-100000.n3p n3-to-n3p test-relations-1000000.n3 > test-relations-1000000.n3p # n3p-to-pvm is any tool translating Notation3 P-code to Prolog VM Code e.g. eye --pvm "$@" n3p-to-pvm test-relations-10.n3p --nope n3p-to-pvm test-relations-100.n3p --nope n3p-to-pvm test-relations-1000.n3p --nope n3p-to-pvm test-relations-10000.n3p --nope n3p-to-pvm test-relations-100000.n3p --nope n3p-to-pvm test-relations-1000000.n3p --nope