Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
David P. Chassin authored Sep 22, 2023
0 parents commit b92e990
Show file tree
Hide file tree
Showing 3,990 changed files with 5,518,193 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
49 changes: 49 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Set default line endings for text files to be lf
* text eol=lf

# Denote all files that are truly binary and should not be modified
*.d binary
*.slo binary
*.lo binary
*.o binary
*.obj binary
*.gch binary
*.pch binary
*.so binary
*.dylib binary
*.dll binary
*.mod binary
*.smod binary
*.lai binary
*.la binary
*.a binary
*.lib binary
*.exe binary
*.out binary
*.app binary
*.bin binary
*.ko binary
*.elf binary
*.so.* binary
*.i*86 binary
*.x86_64 binary
*.hex binary
*.su binary
*.dSYM binary
*.jar binary
*.aps binary
*.png binary
*.jpg binary
*.PNG binary
*.zip binary
*.ppt binary
*.ncb binary
*.pdf binary
*.tar.gz binary
*.docx binary
*.doc binary
*.xls binary
*.xlsx binary
*.mdb binary
*.tif binary
.circleci/config.yml merge=ours
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Enhancement request
about: Suggest an enhancement idea for this project
title: "(Provide a one-line synopsis of your enhancement request)"
labels: enhancement
assignees: dchassin

---

## Background
(Write a clear and concise description of what the problem is. For example, "it's difficult to..." or "I can't...")

## Proposed solution
(Suggest a clear and concise description of what you want to happen.)

## Alternatives
(Describe a clear and concise description of any alternative solutions you've tried or considered.)

## Additional context
(Add any other context, supporting information, or screenshots about the proposed change request here.)
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/problem-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
name: Problem report
about: Report a problem for us to resolve
title: "(Provide a one-line synopsis of the problem)"
labels: bug
assignees: dchassin

---

## Problem description

(Write a clear and concise description of what the bug is.)

## Steps to reproduce

(Explain how to reproduce the behavior, e.g.,)
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

## Expected behavior

(Provide a clear and concise description of what you expected to happen.)

## System information

* GridLAB-D version: (Insert output of `gridlabd --version=all` here)
* Operating system: (Insert output of `uname -a` here)

## Supporting information

(Add any other context about the problem here.)

## Attachments

(If applicable, attach screenshots, supporting files, and other data need to help explain and reproduce the problem. If you encountered a program fault or internal error, and you have built GridLAB-D with `-O0 -g`, then on Linux systems you can attach the output of the following command:)
~~~
bash$ ulimit -c unlimited
bash$ gridlabd <your command options...>
... crash dumps core ...
bash$ gdb -batch -ex "backtrace" $(gridlabd --version=install) ./core
~~~

(If you are running on macOS, you must use `lldb` to do the following.)
~~~
bash$ ulimit -c unlimited
bash$ ls -lt /cores # find the most recent core dump
bash$ lldb -c /cores/core.<number>
(lldb) bt -- backtrace
~~~
Loading

0 comments on commit b92e990

Please sign in to comment.