Revision 1334,
463 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package test.appProfConverter.dcworms; |
---|
2 | import java.util.Map; |
---|
3 | |
---|
4 | public class Processor { |
---|
5 | |
---|
6 | public double maxClockSpeed; |
---|
7 | public int cores; |
---|
8 | public PhaseState pStates[]; |
---|
9 | public Map<Double, PhaseState> pStates_map; |
---|
10 | |
---|
11 | public Processor(double maxClockSpeed, int cores, PhaseState[] pStates, Map<Double, PhaseState> pStates_map) { |
---|
12 | super(); |
---|
13 | this.maxClockSpeed = maxClockSpeed; |
---|
14 | this.cores = cores; |
---|
15 | this.pStates = pStates; |
---|
16 | this.pStates_map = pStates_map; |
---|
17 | } |
---|
18 | |
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.