Skip to content

Commit 2e477d1

Browse files
committedMar 5, 2024
(core) using index notation in fsyntax array example
Src-commit: 963ab68f8fb03b708a659442a0d5be41f60e38f1
1 parent 8baee5c commit 2e477d1

File tree

4 files changed

+33
-22
lines changed

4 files changed

+33
-22
lines changed
 

‎core/library/fsyntax/examples/arrays_ops.pl

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
:- use_package(functional).
22

3-
:- op(150,xfx,[@]).
4-
:- fun_eval '@'/2.
3+
% Postfix blocks enable X[I1,...In] syntax
4+
:- push_prolog_flag(read_postfix_blocks, on).
5+
:- op(40, yf, ['[]']). % (inside a list, otherwise the list is empty!)
6+
:- fun_eval abbrev('\6\postfix_block'(X,Idx), ~get_elem(X,Idx)). % (X[I1,...,In])
57

68
:- op(500,yfx,<+>).
79
:- fun_eval '<+>'/2.

‎core/library/fsyntax/examples/arrays_rt.pl

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:- include(arrays_ops).
44

55
:- doc(title,"Some simple array operations with syntactic support").
6-
:- doc(author,"Pro Grammer").
6+
:- doc(author,"The Ciao Development Team").
77

88
:- doc(module,"This library implements a very simple set of
99
operations on arrays. The idea is to illustrate the use of
@@ -18,7 +18,7 @@
1818
%% :- doc(doinclude,vector/1).
1919
%% :- doc(doinclude,dim/1).
2020

21-
:- regtype array(A) #"@var{A} is a multi-dimensional array.".
21+
:- regtype array(A) # "@var{A} is a multi-dimensional array.".
2222
% Should obviously be defined in more detail...
2323
array(A) :- struct(A).
2424

@@ -46,11 +46,11 @@
4646
fixed_array(Ms,Arg),
4747
rows(N-1,Ms,A).
4848

49-
:- pred @(Array,Index,Elem):: array * dim * int
49+
:- pred get_elem(Array,Index,Elem):: array * dim * int
5050
# "@var{Elem} is the @var{Index}-th element of @var{Array}.".
5151

52-
V@[I] := ~arg(I,V).
53-
V@[I|Js] := ~arg(I,V)@Js.
52+
get_elem(V,[]) := V.
53+
get_elem(V,[I|Js]) := ~get_elem(~arg(I,V),Js).
5454

5555
:- pred <+>(V1,V2,V3) :: vector * vector * vector
5656
# "@var{V3} is @var{V1} + @var{V2}.".
@@ -64,7 +64,7 @@
6464
vecplus_(0,_,_,_).
6565
vecplus_(N,V1,V2,V3) :-
6666
N > 0,
67-
V3@[N] = V1@[N] + V2@[N],
67+
V3[N] = V1[N] + V2[N],
6868
vecplus_(N-1,V1,V2,V3).
6969

7070
:- pred <*>(V1,V2,V3) :: vector * vector * vector
@@ -77,4 +77,4 @@
7777
vecmul_(0, _, _, Acc, Acc).
7878
vecmul_(N, V1, V2, Acc, IP) :-
7979
N > 0,
80-
vecmul_( N-1, V1, V2, Acc + ( V1@[N] * V2@[N] ), IP).
80+
vecmul_( N-1, V1, V2, Acc + ( V1[N] * V2[N] ), IP).

‎core/library/fsyntax/examples/arrays_test.pl

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,10 @@
77
V1 = a(1,3,4,5),
88
V2 = a(5,4,3,1),
99
I = 1,
10-
display(V2@[I+1]),
10+
display(V2[I+1]), nl,
1111
M = V1 <*> ( V2 <+> V1 ).
12+
13+
foo(M) :-
14+
M = a(a(_,_),a(_,_)),
15+
M[1,2] = a,
16+
M[2,1] = a.

‎core/library/fsyntax/fsyntax_doc.pl

+16-12
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@
406406
simplicity arity limitations, solved in any case typically by further
407407
nesting with logarithmic access time). The following recursive
408408
definition defines the property @tt{fixed_array/2} and also the array
409-
access operator @tt{@@}:
409+
access predicate @tt{get_elem/3}:
410410

411411
@begin{verbatim}
412412
fixed_array([N|Ms],A):-
@@ -422,27 +422,31 @@
422422
array(Ms,Arg),
423423
rows(N-1,Ms,A).
424424

425-
:- pred @@(Array,Index,Elem) :: array * list(int) * int
425+
:- pred get_elem(Array,Index,Elem):: array * list(int) * int
426426
# \"@@var@{Elem@} is the @@var@{Index@}-th element of @@var@{Array@}.\".
427427

428-
:- op(150, xfx, '@@').
429-
:- fun_eval (@@)/2.
430-
V@@[I] := ~arg(I,V). %% Or: V@@[] := V.
431-
V@@[I|Js] := ~arg(I,V)@@Js.
428+
get_elem(V,[]) := V.
429+
get_elem(V,[I|Js]) := ~get_elem(~arg(I,V),Js).
432430
@end{verbatim}
433431

434-
This allows writing, e.g., @tt{M = fixed_array([2,2]), M@@[2,1] = 3}
435-
(which could also be expressed as @tt{fixed_array([2,2])@@[2,1] = 3}),
432+
Rather than using @tt{get_elem/3} directly, we will use @tt{:-
433+
push_prolog_flag(read_postfix_blocks, on)} and @tt{fun_eval abbrev}
434+
(see @tt{array_ops.pl} later) to allow the more compact notation
435+
@tt{M[I1,...,In]} as an abbreviation for
436+
@tt{~get_elem(M,[I1,...,In])}.
437+
438+
This allows writing, e.g., @tt{M = fixed_array([2,2]), M[2,1] = 3}
439+
(which could also be expressed as @tt{fixed_array([2,2])[2,1] = 3}),
436440
where the call to the @tt{fixed_array} property generates an empty @em{2
437-
x 2} array @em{M} and @tt{M@@[2,1] = 3} puts @em{3} in @em{M[2,1]}.
441+
x 2} array @em{M} and @tt{M[2,1] = 3} puts @em{3} in @em{M[2,1]}.
438442
This can be done in the top level:
439443
@begin{verbatim}
440-
?- M = ~fixed_array([2,2]), M@@[2,1] = 3.
444+
?- M = ~fixed_array([2,2]), M[2,1] = 3.
441445
@end{verbatim}
442446
@noindent
443-
provided the @tt{op} and @tt{function} declarations are
447+
provided the @tt{op} and @tt{fun_eval} declarations are
444448
loaded into the top level also.
445-
Another example of use is: @tt{A3@@[N+1,M] = A1@@[N-1,M] + A2@@[N,M+2]}.
449+
Another example of use is: @tt{A3[N+1,M] = A1[N-1,M] + A2[N,M+2]}.
446450

447451
Such functionality can be grouped into a @em{package} as follows. The
448452
package main file (@tt{arrays.pl}) might be:

0 commit comments

Comments
 (0)
Please sign in to comment.