|
406 | 406 | simplicity arity limitations, solved in any case typically by further
|
407 | 407 | nesting with logarithmic access time). The following recursive
|
408 | 408 | definition defines the property @tt{fixed_array/2} and also the array
|
409 |
| -access operator @tt{@@}: |
| 409 | +access predicate @tt{get_elem/3}: |
410 | 410 |
|
411 | 411 | @begin{verbatim}
|
412 | 412 | fixed_array([N|Ms],A):-
|
|
422 | 422 | array(Ms,Arg),
|
423 | 423 | rows(N-1,Ms,A).
|
424 | 424 |
|
425 |
| -:- pred @@(Array,Index,Elem) :: array * list(int) * int |
| 425 | +:- pred get_elem(Array,Index,Elem):: array * list(int) * int |
426 | 426 | # \"@@var@{Elem@} is the @@var@{Index@}-th element of @@var@{Array@}.\".
|
427 | 427 |
|
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). |
432 | 430 | @end{verbatim}
|
433 | 431 |
|
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}), |
436 | 440 | 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]}. |
438 | 442 | This can be done in the top level:
|
439 | 443 | @begin{verbatim}
|
440 |
| -?- M = ~fixed_array([2,2]), M@@[2,1] = 3. |
| 444 | +?- M = ~fixed_array([2,2]), M[2,1] = 3. |
441 | 445 | @end{verbatim}
|
442 | 446 | @noindent
|
443 |
| -provided the @tt{op} and @tt{function} declarations are |
| 447 | +provided the @tt{op} and @tt{fun_eval} declarations are |
444 | 448 | 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]}. |
446 | 450 |
|
447 | 451 | Such functionality can be grouped into a @em{package} as follows. The
|
448 | 452 | package main file (@tt{arrays.pl}) might be:
|
|
0 commit comments