/usr/lib/ats2-postiats-0.2.6/libats/DATS/gmatrix.dats is in ats2-lang 0.2.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | (***********************************************************************)
(* *)
(* Applied Type System *)
(* *)
(***********************************************************************)
(*
** ATS/Postiats - Unleashing the Potential of Types!
** Copyright (C) 2011-2013 Hongwei Xi, ATS Trustful Software, Inc.
** All rights reserved
**
** ATS is free software; you can redistribute it and/or modify it under
** the terms of the GNU GENERAL PUBLIC LICENSE (GPL) as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without even the implied warranty of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
** for more details.
**
** You should have received a copy of the GNU General Public License
** along with ATS; see the file COPYING. If not, please write to the
** Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*)
(* ****** ****** *)
(* Author: Hongwei Xi *)
(* Authoremail: hwxi AT cs DOT bu DOT edu *)
(* Start time: July, 2013 *)
(* ****** ****** *)
staload
UN = "prelude/SATS/unsafe.sats"
(* ****** ****** *)
staload "libats/SATS/gvector.sats"
staload "libats/SATS/gmatrix.sats"
staload "libats/SATS/gmatrix_col.sats"
staload "libats/SATS/gmatrix_row.sats"
(* ****** ****** *)
//
implement{}
fprint_gmatrix$sep1 (out) = fprint (out, ", ")
implement{}
fprint_gmatrix$sep2 (out) = fprint (out, "; ")
//
implement{a}
fprint_gmatrix
{mo}{m,n}{ld}
(out, M, mo, m0, n0, ld) = let
//
implement
fprint_gvector$sep<> (out) = fprint_gmatrix$sep1 (out)
//
fun loop_row
{l:addr}{m:nat}.<m>.
(
pf: !GMR(a, l, m, n, ld) | p: ptr l, m: int m
) : void =
(
if m > 0
then let
//
val (
) = (
if m < m0 then fprint_gmatrix$sep2 (out)
) (* end of [val] *)
//
prval
(pf1, pf2) = gmatrow_v_uncons0 (pf)
val () = fprint_gvector (out, !p, n0, 1)
val (
) = loop_row (pf2 | ptr_add<a> (p, ld), pred(m))
prval () = pf := gmatrow_v_cons0 (pf1, pf2)
//
in
// nothing
end else () // end of [if]
)
//
fun loop_col
{l:addr}{m:nat}.<m>.
(
pf: !GMC(a, l, m, n, ld) | p: ptr l, m: int m
) : void =
(
if m > 0
then let
//
val (
) = (
if m < m0 then fprint_gmatrix$sep2 (out)
) (* end of [val] *)
//
prval
(pf1, pf2) = gmatcol_v_uncons0 (pf)
val () = fprint_gvector (out, !p, n0, ld)
val () = loop_col (pf2 | ptr_succ<a> (p), pred(m))
prval () = pf := gmatcol_v_cons0 (pf1, pf2)
//
in
// nothing
end else () // end of [if]
)
//
prval () = lemma_gmatrix_param (M)
//
in
//
case+ mo of
| MORDrow () => loop_row (view@M | addr@M, m0)
| MORDcol () => loop_col (view@M | addr@M, m0)
//
end // end of [fprint_gmatrix]
(* ****** ****** *)
implement{a}
fprint_gmatrix_sep
(out, M, mo, m, n, ld, sep1, sep2) = let
//
implement
fprint_gmatrix$sep1<> (out) = fprint (out, sep1)
implement
fprint_gmatrix$sep2<> (out) = fprint (out, sep2)
//
in
fprint_gmatrix (out, M, mo, m, n, ld)
end // end of [fprint_gmatrix_sep]
(* ****** ****** *)
implement
{a}(*tmp*)
gmatrix_iforeach
(M, mo, m, n, ld) = let
var env: void = () in
gmatrix_iforeach_env<a><void> (M, mo, m, n, ld, env)
end // end of [gmatrix_iforeach]
(* ****** ****** *)
implement
{a}{env}
gmatrix_iforeach_env
(M, mo, m, n, ld, env) = let
//
in
//
case mo of
| MORDrow () => let
var i: int = 0
and j: int = 0
var p_i: ptr = addr@(M)
var p_ij: ptr = the_null_ptr
in
for (i := 0; i < m; i := i+1)
{
val () = p_ij := p_i
val (
) = for (j := 0; j < n; j := j+1)
{
val (pf, fpf | p) = $UN.ptr0_vtake (p_ij)
val () = gmatrix_iforeach$fwork<a><env> (i, j, !p, env)
prval () = fpf (pf)
val () = p_ij := ptr_succ<a> (p)
}
val () = p_i := ptr_add<a> (p_i, ld)
}
end // end of [MORDrow]
| MORDcol () => let
var i: int = 0
and j: int = 0
var p_j: ptr = addr@(M)
var p_ij: ptr = the_null_ptr
in
for (j := 0; j < n; j := j+1)
{
val () = p_ij := p_j
val (
) = for (i := 0; i < m; i := i+1)
{
val (pf, fpf | p) = $UN.ptr0_vtake (p_ij)
val () = gmatrix_iforeach$fwork<a><env> (i, j, !p, env)
prval () = fpf (pf)
val () = p_ij := ptr_succ<a> (p)
}
val () = p_j := ptr_add<a> (p_j, ld)
}
end // end of [MORDcol]
//
end // end of [gmatrix_iforeach_env]
(* ****** ****** *)
implement{a}
gmatrix_imake$fopr (i, j, x) = x
implement{a}
gmatrix_imake_arrayptr
{mo}{m,n}{ld}
(M, mo, m, n, ld) = let
//
prval (
) = lemma_gmatrix_param (M)
prval () = mul_gte_gte_gte{m,n}()
val (pf, pfgc | p) = array_ptr_alloc<a> (i2sz(m*n))
//
typedef tenv = ptr
//
implement
gmatrix_iforeach$fwork<a><tenv>
(i, j, x, env) = let
val x2 = gmatrix_imake$fopr<a> (i, j, x)
val p_ij = env
val () = env := ptr_succ<a> (p_ij)
val () = $UN.ptr0_set<a> (p_ij, x2)
in
// nothing
end // end of [gmatrix_iforeach$fwork]
//
var env: tenv = p
val () = gmatrix_iforeach_env<a><tenv> (M, mo, m, n, ld, env)
//
in
$UN.castvwtp0{arrayptr(a,m*n)}((pf, pfgc | p))
end // end of [gmatrix_imake_arrayptr]
implement{a}
gmatrix_imake_matrixptr
{mo}{m,n}{ld}
(M, mo, m, n, ld) = let
//
prval (
) = lemma_gmatrix_param (M)
val (pf, pfgc | p) = matrix_ptr_alloc<a> (i2sz(m), i2sz(n))
prval () = matrix2gmatrow (!p)
//
implement(env)
gmatrix_iforeach$fwork<a><env>
(i, j, x, env) = let
val x2 = gmatrix_imake$fopr<a> (i, j, x)
val p_ij = ptr_add<a> (p, i*n+j)
val () = $UN.ptr0_set<a> (p_ij, x2)
in
// nothing
end // end of [gmatrix_iforeach$fwork]
//
val () = gmatrix_iforeach<a> (M, mo, m, n, ld)
//
prval () = gmatrow2matrix (!p)
//
in
$UN.castvwtp0{matrixptr(a,m,n)}((pf, pfgc | p))
end // end of [gmatrix_imake_matrixptr]
(* ****** ****** *)
(* end of [gmatrix.dats] *)
|