mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	share: re-add SAT solver cell count to log message
This commit is contained in:
		
							parent
							
								
									6da543a61a
								
							
						
					
					
						commit
						061cf5c6c4
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -1297,8 +1297,8 @@ struct ShareWorker
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				qcsat.ez->assume(qcsat.ez->AND(sub1, sub2));
 | 
									qcsat.ez->assume(qcsat.ez->AND(sub1, sub2));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				log("      Size of SAT problem: %d variables, %d clauses\n",
 | 
									log("      Size of SAT problem: %zu cells, %d variables, %d clauses\n",
 | 
				
			||||||
						qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
 | 
											qcsat.imported_cells.size(), qcsat.ez->numCnfVariables(), qcsat.ez->numCnfClauses());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if (qcsat.ez->solve(sat_model, sat_model_values)) {
 | 
									if (qcsat.ez->solve(sat_model, sat_model_values)) {
 | 
				
			||||||
					log("      According to the SAT solver this pair of cells can not be shared.\n");
 | 
										log("      According to the SAT solver this pair of cells can not be shared.\n");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue