This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Variable | Unit | Country | Year | Value | Flags | |
---|---|---|---|---|---|---|
Total hospital beds | Number | Australia | 1960 | 99191 | ||
Total hospital beds | Number | Australia | 1961 | 99670 | ||
Total hospital beds | Number | Australia | 1962 | 100413 | ||
Total hospital beds | Number | Australia | 1963 | 102109 | ||
Total hospital beds | Number | Australia | 1964 | 102618 | ||
Total hospital beds | Number | Australia | 1965 | 103580 | ||
Total hospital beds | Number | Australia | 1966 | 103636 | ||
Total hospital beds | Number | Australia | 1967 | 104262 | ||
Total hospital beds | Number | Australia | 1968 | 103397 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random ## to generate the items | |
from pulp import * ## import pulp-or functions | |
class MasterProblem: | |
def __init__(self, maxValue, itemLengths, itemDemands, initialPatterns, problemname): | |
self.maxValue=maxValue | |
self.itemLengths=itemLengths |
NewerOlder