From 649ee3103270dc4abf3dc890afec28e12aaa5900 Mon Sep 17 00:00:00 2001
From: Anh <zenpoems@gmail.com>
Date: Thu, 11 Jul 2019 07:31:41 -0700
Subject: [PATCH] Self-validation assertion failure on ncal

What's a good magic number for asserting?
Maybe there isn't one across all apps?
---
 src/zipr.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/zipr.cpp b/src/zipr.cpp
index f7f4ca4..76305f6 100644
--- a/src/zipr.cpp
+++ b/src/zipr.cpp
@@ -822,7 +822,7 @@ void ZiprImpl_t::PlaceDollops()
 	cout<<"# ATTRIBUTE Zipr::placement_queue_size="<<dec<<placement_queue.size()<<endl;
 
 	assert(getenv("SELF_VALIDATE")==nullptr || count_pins > 3 ) ;
-	assert(getenv("SELF_VALIDATE")==nullptr || placement_queue.size() > 8 ) ;
+	assert(getenv("SELF_VALIDATE")==nullptr || placement_queue.size() > 3 ) ;
 
 	/* 
          * used to check if a reference dollop needs to be added to the placement queue
-- 
GitLab