-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitCounter.java
More file actions
72 lines (64 loc) · 1.71 KB
/
Copy pathBitCounter.java
File metadata and controls
72 lines (64 loc) · 1.71 KB
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
/* BitCounter class
*
* binMeta project
*
* last update: Nov 1, 2020
*
* AM
*/
public class BitCounter extends Objective
{
private int nbits; // sets up a fixed length for bit string
// Constructor
public BitCounter(int n)
{
try
{
if (n <= 0) throw new Exception("Impossible to create BitCounter objective: bit length is 0 or even negative");
this.nbits = n;
this.name = "BitCounter";
this.lastValue = null;
}
catch (Exception e)
{
e.printStackTrace();
System.exit(1);
}
}
@Override
public Data solutionSample()
{
return new Data(this.nbits,0.5);
}
@Override
public double value(Data D)
{
try
{
String msg = "Impossible to evaluate BitCounter objective: ";
if (D == null) throw new Exception(msg + "the Data object is null");
if (D.numberOfBits() != this.nbits) throw new Exception(msg + "unexpected bit string length in Data object");
}
catch (Exception e)
{
e.printStackTrace();
System.exit(1);
}
// objective evaluation: it counts the number of bits set to 1
Data bitstring = new Data(D);
int count = bitstring.getCurrentBit();
while (bitstring.hasNextBit()) count = count + bitstring.getNextBit();
this.lastValue = (double) count;
return this.lastValue;
}
// main
public static void main(String[] args)
{
Objective obj = new BitCounter(100);
Data D = obj.solutionSample();
System.out.println(obj);
System.out.println(D);
System.out.println("Evaluating the objective function in D : " + obj.value(D));
System.out.println(obj);
}
}