Rocksolid Light

Welcome to Rocksolid Light

mail  files  register  newsreader  groups  login

Message-ID:  

"...Unix, MS-DOS, and Windows NT (also known as the Good, the Bad, and the Ugly)." (By Matt Welsh)


devel / comp.lang.prolog / phpProlog (lack of) progress report

SubjectAuthor
* phpProlog (lack of) progress reportGraham Cooper
`- phpProlog (lack of) progress reportDhu on Gate

1
phpProlog (lack of) progress report

<d71d232f-d14e-4e83-a7c5-5a5de4b71f49n@googlegroups.com>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=2440&group=comp.lang.prolog#2440

  copy link   Newsgroups: comp.lang.prolog
X-Received: by 2002:adf:f147:0:b0:21b:9ff4:9e08 with SMTP id y7-20020adff147000000b0021b9ff49e08mr3701172wro.608.1656162001298;
Sat, 25 Jun 2022 06:00:01 -0700 (PDT)
X-Received: by 2002:a25:5809:0:b0:66c:8709:3611 with SMTP id
m9-20020a255809000000b0066c87093611mr3541256ybb.608.1656162000535; Sat, 25
Jun 2022 06:00:00 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!feeder1.cambriumusenet.nl!feed.tweak.nl!209.85.128.88.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.prolog
Date: Sat, 25 Jun 2022 06:00:00 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=2001:8004:1140:2f44:518e:d2ba:2ed3:cae;
posting-account=EsDGawkAAAAN6xcF2fi-X0yb3ECD-3_I
NNTP-Posting-Host: 2001:8004:1140:2f44:518e:d2ba:2ed3:cae
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d71d232f-d14e-4e83-a7c5-5a5de4b71f49n@googlegroups.com>
Subject: phpProlog (lack of) progress report
From: grahamcooper7@gmail.com (Graham Cooper)
Injection-Date: Sat, 25 Jun 2022 13:00:01 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Graham Cooper - Sat, 25 Jun 2022 13:00 UTC

I almost worked out the bracket parser think its a 2D array as you go futhr up

f ( a b(c))

x[1,1] = 'f'
x[1,2] = 'a'

I lost the 9 example sheet to compile the node data

head fa fa1
q q2 1 fa fb1 1
q fb1 1 fb 7 1
f fa1 fa fb2 1
f fb2 fb z1 1

head f f1
f f1 f a1 c
f a1 a b z1
q q3 1 f a2 z2
q a2 1 a b d

head f f2
f f2 f a3 d
f a3 a b1 c
f b1 b x y
q q4 1 f a4 d
q a4 1 a z1 c

head learn l1
f l1 learn zSTUD miniBASE
q q5 1 learn chris zTOPIC

head g g1
head g g2
f g1 g 1 2
f g2 g 3 3
q q6 1 g z1 z1

head h h1
f h1 h i1 i2
f i1 i 1 1
f i2 i 1 1
q q7 1 h z1 z1

head check check1
f check1 check 1 2
q q8 1 check 2 2

head rich rich1
head prty prty1
f rich1 rich gaga 1
f prty1 prty gaga 1
q q9 1 rich gaga 1
q q9 2 prty gaga 1

f num1 number 1 1
f num2 number 2 1
f num3 number 3 1
f equ1 equals 1 1
f equ2 equals 2 2
f equ3 equals 3 3
f tst1 testal z 1
q tst1 1 number z 1
q tst1 2 equals z 2
q q10 1 testal zN 1

that is phpProlog native form

eg

num(1).
num(2).
num(3).
equals(1,1)
equals(2,2).

having trouble reversing it back to the original examples

phpProlog ETA about 2 months

Re: phpProlog (lack of) progress report

<t9hta7$17bu7$3@dont-email.me>

  copy mid

https://news.novabbs.org/devel/article-flat.php?id=2445&group=comp.lang.prolog#2445

  copy link   Newsgroups: comp.lang.prolog
Path: i2pn2.org!i2pn.org!aioe.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: campbell@neotext.ca (Dhu on Gate)
Newsgroups: comp.lang.prolog
Subject: Re: phpProlog (lack of) progress report
Date: Wed, 29 Jun 2022 16:06:31 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 99
Message-ID: <t9hta7$17bu7$3@dont-email.me>
References: <d71d232f-d14e-4e83-a7c5-5a5de4b71f49n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 29 Jun 2022 16:06:31 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="c2c027be878ae89c4915ca677b008a88";
logging-data="1290183"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1896IeHiSFdDXkf3naFUfAJeWkhhRzlkAw="
User-Agent: Pan/0.140 (Chocolate Salty Balls; GIT b8fc14e
git.gnome.org/git/pan2)
Cancel-Lock: sha1:plTknPg/W37genpJsR5bd3hgYA4=
 by: Dhu on Gate - Wed, 29 Jun 2022 16:06 UTC

On Sat, 25 Jun 2022 06:00:00 -0700, Graham Cooper wrote:

> I almost worked out the bracket parser think its a 2D array as you go futhr up
>
>
> f ( a b(c))
>
> x[1,1] = 'f'
> x[1,2] = 'a'
>
>
> I lost the 9 example sheet to compile the node data
>
>
>
> head fa fa1
> q q2 1 fa fb1 1
> q fb1 1 fb 7 1
> f fa1 fa fb2 1
> f fb2 fb z1 1
>
> head f f1
> f f1 f a1 c
> f a1 a b z1
> q q3 1 f a2 z2
> q a2 1 a b d
>
> head f f2
> f f2 f a3 d
> f a3 a b1 c
> f b1 b x y
> q q4 1 f a4 d
> q a4 1 a z1 c
>
> head learn l1
> f l1 learn zSTUD miniBASE
> q q5 1 learn chris zTOPIC
>
> head g g1
> head g g2
> f g1 g 1 2
> f g2 g 3 3
> q q6 1 g z1 z1
>
> head h h1
> f h1 h i1 i2
> f i1 i 1 1
> f i2 i 1 1
> q q7 1 h z1 z1
>
> head check check1
> f check1 check 1 2
> q q8 1 check 2 2
>
> head rich rich1
> head prty prty1
> f rich1 rich gaga 1
> f prty1 prty gaga 1
> q q9 1 rich gaga 1
> q q9 2 prty gaga 1
>
> f num1 number 1 1
> f num2 number 2 1
> f num3 number 3 1
> f equ1 equals 1 1
> f equ2 equals 2 2
> f equ3 equals 3 3
> f tst1 testal z 1
> q tst1 1 number z 1
> q tst1 2 equals z 2
> q q10 1 testal zN 1
>
>
>
> that is phpProlog native form
>
> eg
>
> num(1).
> num(2).
> num(3).
> equals(1,1)
> equals(2,2).
>
>
>
> having trouble reversing it back to the original examples
>
> phpProlog ETA about 2 months

Kewlio.

Dhu

--
Je suis Canadien. Ce n'est pas Francais ou Anglais.
C'est une esp`ece de sauvage: ne obliviscaris, vix ea nostra voco;-)
Duncan Patton the Campbell

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor