Line | |
---|
1 | # _________________________________________________________________________ |
---|
2 | # |
---|
3 | # Coopr: A COmmon Optimization Python Repository |
---|
4 | # Copyright (c) 2010 Sandia Corporation. |
---|
5 | # This software is distributed under the BSD License. |
---|
6 | # Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, |
---|
7 | # the U.S. Government retains certain rights in this software. |
---|
8 | # For more information, see the Coopr README.txt file. |
---|
9 | # _________________________________________________________________________ |
---|
10 | |
---|
11 | __all__ = ['ISolutionWriterExtension'] |
---|
12 | |
---|
13 | from pyutilib.component.core import * |
---|
14 | |
---|
15 | |
---|
16 | class ISolutionWriterExtension(Interface): |
---|
17 | |
---|
18 | def write(self, scenario_tree, output_file_prefix): |
---|
19 | """Called with a ScenarioTree type object.""" |
---|
20 | pass |
---|
Note: See
TracBrowser
for help on using the repository browser.