-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
85 lines (69 loc) · 1.81 KB
/
main.go
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
package main
import (
"flag"
"fmt"
"math/rand"
"os"
"time"
"./kmeans"
)
/*ModeSync executes the algorithm synchronously*/
const ModeSync = "sync"
/*ModeAsync executes the algorithm asynchronously*/
const ModeAsync = "async"
/*ModeBoth executes the algorithm synchronously and asynchronously*/
const ModeBoth = "both"
/*ModeChart executes the algorithm and creates a chart*/
const ModeChart = "chart"
func main() {
var dataset []kmeans.Point
rand.Seed(time.Now().UnixNano())
// t: number of iterations
var t *int
t = new(int)
*t = 0
th := flag.Int("th", 4, "number of processors")
k := flag.Int("k", 0, "number of clusters")
n := flag.Int("n", 0, "number of elements")
makeGif := flag.Bool("gif", false, "wheter make gif or not")
static := flag.Bool("static", false, "don't random values")
mode := flag.String("mode", ModeSync, "Mode to run the program")
flag.Parse()
if *static {
*k = 4
*n = 800
}
// If there is no "k" or "n" the program will exit
if *k == 0 || *n == 0 {
flag.Usage()
os.Exit(1)
}
if *static {
dataset = kmeans.GetStaticPoints()
} else {
// Generate some random points
for i := 0; i < *n; i++ {
dataset = append(dataset, kmeans.Point{X: rand.Float64(), Y: rand.Float64()})
}
}
// Clean charts directory
os.RemoveAll("./charts")
os.Mkdir("./charts", os.ModeDir)
if *mode == ModeSync {
kmeans.RunSync(dataset, *k, *static)
} else if *mode == ModeAsync {
kmeans.RunAsync(dataset, *k, *th, *static)
} else if *mode == ModeBoth {
kmeans.RunSync(dataset, *k, *static)
kmeans.RunAsync(dataset, *k, *th, *static)
} else if *mode == ModeChart {
kmeans.RunWithDrawing(dataset, *k, t, *static)
// We are going to make a GIF when `gif` flag is true
if *makeGif {
kmeans.MakeGif(*t)
}
} else {
fmt.Printf("Mode '%s' not supported!\n", *mode)
os.Exit(1)
}
}