Code
../../../../../../../Macaulay2/m2/methods.m2:652:52-661:26: --source code:
cacheValue = key -> f -> new CacheFunction from (x -> (
c := try x.cache else x.cache = new CacheTable;
if c#?key then (
val := c#key;
if class val === CacheFunction then (
remove(c,key);
c#key = val x)
else val
)
else c#key = f x))
| symbol class value location of symbol
| ------ ----- ----- ------------------
| f : FunctionClosure -- ... ../../../../../../../Macaulay2/m2/methods.m2:652:21-652:22
| key : Symbol -- inverse ../../../../../../../Macaulay2/m2/methods.m2:652:14-652:17
| -- function f:
| ../../../../../../../Macaulay2/m2/matrix1.m2:621:8-628:15: --source code:
| m -> (
| if hasEngineLinearAlgebra ring m and isBasicMatrix m then
| basicInverse m
| else (
| (quo,rem) := quotientRemainder(id_(target m), m);
| if rem != 0 then error "matrix not invertible";
| quo))
| )