This project is not currently maintained (for almost a decade).
https://www.saycbridge.com/ is still running on AppEngine using the
kbb
branch. The master
branch uses the z3b
which is a
based on Microsoft Research's Z3 library and is believed to produce
much better (less fragile) output than the KBB. I never fully converted
the project to z3b because I got interested in other hobbies instead.
You're welcome to fork and continue the project. I believe there is a memory leak in z3b which will need to be fixed to take it to production.
A Python library and Google App Engine instance for bidding bridge hands using Standard American Yellow Card conventions.
The SAYC Bridge code is currently undergoing an re-write.
The code at saycbridge.com runs on Google App Engine and uses the (deprecated) Knolwedge Based Bidder (KBB) which can be checked out from the "kbb" branch.
All active development is focused on the new z3 bidder (src/z3b) which is currently only hosted on z3b.saycbridge.com.
The z3b is nearly ready to replace the kbb on www.saycbridge.com.
The typical development cycle:
# Make changes to the bidder (src/z3b)
make check
# Bah, my changes don't work as expected!
# Try ./scripts/test-hand and ./scripts/explain to understand why.
# Use http://localhost:8080/explorer to understand my changes better.
# Fix my changes to actually work.
make accept
git commit
We highly recommend you use virtualenv:
sudo pip install virtualenv
virtualenv sayc-env
. sayc-env/bin/activate
To get and compile all the dependencies:
git submodule update --init
make deps
You can run the SAYCBridge web-interface in a local development server using
make serve # A very experimental version of the site using the z3 Bidder
Running the server will require CoffeeScript:
sudo npm install -g coffee-script
If you don't already have npm, you can get it from Node.js http://nodejs.org/
One place to start is looking at None results in the unittests: FAIL: None (expected 2C) for T874.876.86.J843 (hcp: 1 lp: 1 sp: 2), history: 1S X P These are where the bidder failed to make a call.
Similarly, when you run the site locally, all None bids will show as "Pass" with an orange background to highlight the error.
Either browsing around the site (make serve), or running the unittests is a great way to find bids which are wrong or missing rules.
New rules can be added to src/z3b/rules.py
make check # check your latest changes against your baseline.txt
make accept # replace the current baseline file with your last make check results
make clean # remove all *.pyc files
make serve
scripts/test-hand [EXPECTED_CALL] HAND_STRING [HISTORY_STRING]
scripts/explain HISTORY_STRING
scripts/test-sayc # Runs the unit tests.
scripts/saycbot.py [-a] # Command-line interactive bidder. -a auto-bids all hands (for finding crashes).
scripts/test-sayc -p
will run the unittests with the python cProfile module. It will also print instructions on how to read the profile data.
There are Chrome OS, iOS, and Android wrappers / apps for SAYC Bridge:
The code for these can all be found in the "dist" directory.