summaryrefslogtreecommitdiff
path: root/test/equal.bqn
blob: 54aaca1ae202945a8be8d021294a43795d3f40b9 (plain)
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
# make o3n-singeli && ./BQN test/equal.bqn
ListVariations, ClearRefs, Variation, Squeeze, Info  •internal
u  100×(•UnixTime+1|100וMonoTime)@
# u ↩ 123

r  •MakeRand •Show u

TestVars  { w𝕊ab:
  n  ¬w
  (ListVariations a) {
    ¬n (𝕨 Variation a)  (𝕩 Variation b)? @;
    •Out "fail for "𝕨"/"𝕩", expected "(w"0""1")":"
    •Out •Repr a
    •Out •Repr b
    •Out •Repr ab
    •Exit 1
  } ListVariations b
  ClearRefs@
}

(1 TestVars ˜)¨ ⟨⟨⟩  ""  0

RandVals  r •Import "utils.bqn"

Do  { 𝕊:
  at  r.Range 8
  l  1 + r.Range (at=0)100700
  a  l RandVals at
  (1{𝕊:´a=a} at=4) TestVars aa
  { 𝕊:
    p  r.Range l
    v  1 RandVals r.Range5  5+r.Range3 at5
    exp  v = pa
    b  Squeeze v(p) a
    (exp{𝕊:´a=b} at=4) TestVars ab
  }@100 @
}

@Do1000 @