-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Headers and license #2
base: main
Are you sure you want to change the base?
Conversation
InitGui.py~
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a backup file and shouldn't be included here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this and other issues! Fixed this in the most recent commit and will submit another merge request.
columnGen/__init__.py
Outdated
# *************************************************************************** | ||
# * * | ||
# * PackedColumnGen Copyright (c) 2012 - 2023, by the software owners: * | ||
# * Oak Ridge Institute for Science and Education (ORISE), TRIAD * | ||
# * National Security, LLC., Lawrence Livermore National Security, LLC., * | ||
# * The Regents of the University of California, through Lawrence * | ||
# * Berkeley National Laboratory, Battelle Memorial Institute, Pacific * | ||
# * Northwest Division through Pacific Northwest National Laboratory, * | ||
# * Carnegie Mellon University, West Virginia University, Boston * | ||
# * University, the Trustees of Princeton University, The University of * | ||
# * Texas at Austin, URS Energy & Construction, Inc., et al. * | ||
# * All rights reserved. * | ||
# * * | ||
# * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * | ||
# * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * | ||
# * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * | ||
# * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * | ||
# * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT * | ||
# * , INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * | ||
# * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * | ||
# * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * | ||
# * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * | ||
# * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * | ||
# * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * | ||
# * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * | ||
# * * | ||
# * Authors: Yash Girish Shah, Grigorios Panagakos * | ||
# * * | ||
# *************************************************************************** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is really needed in a __init__.py
file, but should at least be shorted, as done in some of the other files, to just refer to the LICENSE.md
file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed this in the most recent commit.
@@ -0,0 +1,127 @@ | |||
from .preamble import * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No ref to LICENSE.md?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The short reference is added in the most recent commit. Thanks for catching this!
packedColumnGen.exe
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm guessing this shouldn't be here either...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the executable file.
README.html
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like a duplicate of the README.md file? If so, is it needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the html version. Git automatically displays the markdown files in a nice format, so the html file is not really needed here.
columnTree.png
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it might be in the wrong place here at the top-level?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this file.
…y files. Cleaned up duplicates README.md was also present as an html.
Made changes into the most recent commit. |
Made changes to the license file and headers in the python file, so the license is not copied over to each file.