diff --git a/clp/IntSynth.scala b/clp/IntSynth.scala
index f3a6a8ac6d3a615b44a94746fa9fe23d5ec006b3..f4ea0bd791bea62d838ebb586fa27fde551ddba1 100644
--- a/clp/IntSynth.scala
+++ b/clp/IntSynth.scala
@@ -3,12 +3,44 @@ import funcheck.Annotations._
 import funcheck.Utils._
 
 object IntSynth {
-  def spec(time : Int, m : Int, s : Int) : Boolean = {
+
+  // What could this be?
+
+  def specT(time : Int, h : Int, m : Int, s : Int) : Boolean = {
     require(0 <= time)
-    time == 60 * m + s &&
-    0 <= m && 0 <= s && s < 60
+    time == 3600 * h + 60 * m + s &&
+    0 <= h && 
+    0 <= m && m < 60 &&
+    0 <= s && s < 60
+  }
+  def f200(h : Int, m : Int, s : Int) : Boolean = {
+    !specT(10000, h, m, s)
+  } holds
+
+  // Square root
+
+  def specSqr(x : Int, y : Int) : Boolean = {
+    require (0 <= y)
+    x*x <= y && (x+1)*(x+1) > y
   }
-  def f200(m : Int, s : Int) : Boolean = {
-    !spec(200, m, s)
+  def sqrt100(x : Int) : Boolean = {
+    !specSqr(x, 1000)
   } holds
+
+  // Sketching
+
+  def mySquare(x : Int, q1 : Int, q2 : Int, q3 : Int) : Int = {
+    require (x >= 0)
+    if (x <= 1) x + q1
+    else q2*x + mySquare(x - 2, q1,q2,q3) + q3
+  }
+
+  def shouldSquare(q1 : Int, q2 : Int, q3 : Int) : Boolean = {
+    !(mySquare(3,q1,q2,q3)==9 &&
+      mySquare(4,q1,q2,q3)==16 &&
+      mySquare(5,q1,q2,q3)==25)
+  } holds
+
+  //def gotThis(x : Int) = mySquare(x, 0, 4, -4)
+  //println(gotThis(10)) --> 100
 }