-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.c
64 lines (54 loc) · 2.55 KB
/
main.c
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
#include <stdio.h>
#include <stdlib.h>
#include "pub.h"
int main()
{
/*
char mctx[] = "013|-1|0|271#999:0#39.00/271#0:0#13.00;"
"014|-1|0|269#3#2.85";
char tctx[] = "013#271#999:0#39.00;014#269#3#2.85;1;3|"
"013#271#0:0#13.00;014#269#3#2.85;1;7.18";
*/
char mctx[] = "013|-1|0|354#3#8.00/354#1#4.00/354#0#2.00;"
"014|-1|0|354#3#8.00/354#1#4.00/354#0#2.00;"
"015|-1|0|354#3#8.00/354#1#4.00/354#0#2.00";
char tctx[] = "013#354#3#8.00;014#354#3#8.00;1;128.00|"
"013#354#3#8.00;014#354#1#4.00;1;64.00|"
"013#354#3#8.00;014#354#0#2.00;1;32.00|"
"013#354#1#4.00;014#354#3#8.00;1;64.00|"
"013#354#1#4.00;014#354#1#4.00;1;32.00|"
"013#354#1#4.00;014#354#0#2.00;1;16.00|"
"013#354#0#2.00;014#354#3#8.00;1;32.00|"
"013#354#0#2.00;014#354#1#4.00;1;16.00|"
"013#354#0#2.00;014#354#0#2.00;1;8.00|"
"013#354#3#8.00;015#354#3#8.00;1;128.00|"
"013#354#3#8.00;015#354#1#4.00;1;64.00|"
"013#354#3#8.00;015#354#0#2.00;1;32.00|"
"013#354#1#4.00;015#354#3#8.00;1;64.00|"
"013#354#1#4.00;015#354#1#4.00;1;32.00|"
"013#354#1#4.00;015#354#0#2.00;1;16.00|"
"013#354#0#2.00;015#354#3#8.00;1;32.00|"
"013#354#0#2.00;015#354#1#4.00;1;16.00|"
"013#354#0#2.00;015#354#0#2.00;1;8.00|"
"014#354#3#8.00;015#354#3#8.00;1;128.00|"
"014#354#3#8.00;015#354#1#4.00;1;64.00|"
"014#354#3#8.00;015#354#0#2.00;1;32.00|"
"014#354#1#4.00;015#354#3#8.00;1;64.00|"
"014#354#1#4.00;015#354#1#4.00;1;32.00|"
"014#354#1#4.00;015#354#0#2.00;1;16.00|"
"014#354#0#2.00;015#354#3#8.00;1;32.00|"
"014#354#0#2.00;015#354#1#4.00;1;16.00|"
"014#354#0#2.00;015#354#0#2.00;1;8.00";
/* //Í淨ȫ°ütest
char mctx[] = "013|1|0|354#3#4.40/272#33#7.00/272#13#9.00/272#03#38.00;"
"014|-1|0|354#1#3.35";
char tctx[] = "013#354#3#4.40;014#354#1#3.35;1;29.48|"
"013#272#33#7.00;014#354#1#3.35;1;46.9|"
"013#272#13#9.00;014#354#1#3.35;1;60.3|"
"013#272#03#38.00;014#354#1#3.35;1;254.6";
*/
char res[64*1024] = {'\0'};
printf("ret=%d\n",api_prize_optimizer(mctx, tctx, 54, -1, res));
printf("%s", res);
return 0;
}