]> Cypherpunks.ru repositories - gostls13.git/blob - test/235.go
move things out of sys into os and runtime
[gostls13.git] / test / 235.go
1 // $G $F.go && $L $F.$A && ./$A.out
2
3 // Copyright 2009 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 package main
8
9 import "os"
10
11 type T chan uint64;
12
13 func M(f uint64) (in, out T) {
14         in = make(T, 100);
15         out = make(T, 100);
16         go func(in, out T, f uint64) {
17                 for {
18                         out <- f * <-in;
19                 }
20         }(in, out, f);
21         return in, out;
22 }
23
24
25 func min(xs []uint64) uint64 {
26         m := xs[0];
27         for i := 1; i < len(xs); i++ {
28                 if xs[i] < m {
29                         m = xs[i];
30                 }
31         }
32         return m;
33 }
34
35
36 func main() {
37         F := []uint64{2, 3, 5};
38         var n = len(F);
39         OUT := []uint64{
40                 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27, 30, 32, 36,
41                 40, 45, 48, 50, 54, 60, 64, 72, 75, 80, 81, 90, 96, 100, 108, 120, 125,
42                 128, 135, 144, 150, 160, 162, 180, 192, 200, 216, 225, 240, 243, 250,
43                 256, 270, 288, 300, 320, 324, 360, 375, 384, 400, 405, 432, 450, 480,
44                 486, 500, 512, 540, 576, 600, 625, 640, 648, 675, 720, 729, 750, 768,
45                 800, 810, 864, 900, 960, 972, 1000, 1024, 1080, 1125, 1152, 1200, 1215,
46                 1250, 1280, 1296, 1350, 1440, 1458, 1500, 1536, 1600 };
47
48         x := uint64(1);
49         ins := make([]T, n);
50         outs := make([]T, n);
51         xs := make([]uint64, n);
52         for i := 0; i < n; i++ {
53                 ins[i], outs[i] = M(F[i]);
54                 xs[i] = x;
55         }
56
57         for i := 0; i < len(OUT); i++ {
58                 t := min(xs);
59                 for i := 0; i < n; i++ {
60                         ins[i] <- x;
61                 }
62
63                 for i := 0; i < n; i++ {
64                         if xs[i] == x { xs[i] = <- outs[i]; }
65                 }
66
67                 x = min(xs);
68                 if x != OUT[i] { panic("bad: ", x, " should be ", OUT[i]); }
69         }
70         os.Exit(0);
71 }