── CORE ── = ─┬─ <total core> ──────────────────────────────┬──────────┤ └─ ( ── <data core> ── , ── <code core> ── ) ─┘
── <integer expression> ───────────────────────────────────────────────┤
Explanation
The CORE attribute provides an estimate of memory required to schedule a task.
Examples
The following example assigns an integer constant as the total core value:
CORE = 50;
The following example assigns the total core value of the product of X and Y, which are integer variables assigned earlier in the job:
CORE = (X * Y);
The following example assigns data core the sum of W and X, and assigns code core the difference of Y and Z. The letters W, X, Y, and Z are previously defined integer variables.
CORE = (W + X, Y - Z)