This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Search_Deep where | |
import Data.Bits | |
data Fun = And | Add | Xor | Or | Sub | Bus | |
data Shape = F Shape Shape | Var | Tok | |
data Expr a = C Fun (Expr a) (Expr a) | V a | T | |
data U = U | |
instance Show U where | |
showsPrec _ U = ("?" ++) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script> | |
var width = 960, | |
height = 500; |