Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dckc/metamath-tools
https://github.com/dckc/metamath-tools
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dckc/metamath-tools
- Owner: dckc
- Created: 2013-08-24T02:08:35.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-24T02:08:44.000Z (about 11 years ago)
- Last Synced: 2024-10-15T21:17:36.804Z (23 days ago)
- Language: Rust
- Size: 363 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
metamath-tools -- toward a metamath parser, proof checker in scala
==================================================================Metamath__, by Norman Megill, is "a tiny language that can express
theorems in abstract mathematics, accompanied by proofs that can be
verified by a computer program."__ http://us.metamath.org/index.html
The language is accompanied by a proof checker and a growing database
of thousands of proved theorems covering conventional results in
logic, set theory, number theory, group theory, algebra, analysis, and
topology.I don't recall exactly what motivated me to start a scala implementation.
One idea:- proof assistant using angular.js
Performance of the scala implementation was pretty bad; as I recall,
it took about 20 minutes to parse what the original C version parses
in a few seconds.I'm picking up the project again since discovering rust__.
__ http://www.rust-lang.org/
background/context:
- `Saying Goodbye to Moore Method math notes and Robert Miner`__
by Dan C at Saturday, February 18, 2012
- `Map and Territory in RDF APIs`__
by connolly 27 Apr 2010
- `Fun and Frustration with Scala`__
by connolly 18 Jan 2010
__ http://www.madmode.com/2012/02/moore-method-wikipedia-free.html
__ http://dig.csail.mit.edu/breadcrumbs/node/253
__ http://www.advogato.org/person/connolly/diary/71.htmlDev Tools, Reference
--------------------- sbt
- `Scala Standard Library`__
- ScalaTest____ http://www.scala-lang.org/api/current/index.html
__ http://www.scalatest.org/Origins: Typesafe Stack scaffold
--------------------------------.. note:: TODO: find out where this came from
A sample for the Typesafe Stack (http://typesafe.com/stack).
Scala sample project using Scala and SBT.
To run and test it use SBT invoke: 'sbt run'