From b79dbbe6f8514469c07695a6f85e555332e56ca1 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Sun, 11 Nov 2018 21:23:31 -0500 Subject: Initial commit A mostly functional proof-of-concept --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..de2f5e7 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# circgraph + +This is a tool for calculating equivalent +resistances/impedances/capacitances for a circuit (represented as a +graph, hence "circuit graph"), written in C++. + +# Motivation + +This program exists for three reasons: boredom, a desire to brush up +on my C++, and -- most importantly -- laziness. Why do tedious +arithmetic when you can spend hours writing a program to do it for +you? + +# Usage + +Compile with: + +``` +g++ main.cpp -o circgraph +``` + +`circgraph` takes input from stdin in the following format: + + + [ ]... + +... + + +See the `testX.txt` files for more. -- cgit v1.1