mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 13:29:11 +00:00 
			
		
		
		
	fix some warnings
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
		
							parent
							
								
									7bba8bc0c9
								
							
						
					
					
						commit
						0e71adfa35
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -289,7 +289,7 @@ namespace lp {
 | 
			
		|||
            if (!contains(m_active_terms, t)) {
 | 
			
		||||
                for (int i = m_added_terms.size() - 1; i >= 0; --i) {
 | 
			
		||||
                    if (m_added_terms[i] != t) continue;
 | 
			
		||||
                    if (i != m_added_terms.size() -1) 
 | 
			
		||||
                    if ((unsigned)i != m_added_terms.size() -1) 
 | 
			
		||||
                        m_added_terms[i] = m_added_terms.back();
 | 
			
		||||
                    m_added_terms.pop_back();
 | 
			
		||||
                    break; // all is done since the term has not made it to m_active_terms
 | 
			
		||||
| 
						 | 
				
			
			@ -350,7 +350,7 @@ namespace lp {
 | 
			
		|||
            make_sure_j_is_in_the_last_row_of_l_matrix();
 | 
			
		||||
            const auto &last_e_row = m_l_matrix.m_rows.back();
 | 
			
		||||
            mpq alpha;
 | 
			
		||||
            for (const auto p: last_e_row) {
 | 
			
		||||
            for (const auto& p: last_e_row) {
 | 
			
		||||
                if (p.var() == j) {
 | 
			
		||||
                    alpha = p.coeff();
 | 
			
		||||
                    break;
 | 
			
		||||
| 
						 | 
				
			
			@ -396,7 +396,7 @@ namespace lp {
 | 
			
		|||
            unsigned j = m_l_matrix.column_count() - 1;
 | 
			
		||||
            const auto &last_e_row = m_l_matrix.m_rows.back();
 | 
			
		||||
            mpq alpha;
 | 
			
		||||
            for (const auto p: last_e_row) {
 | 
			
		||||
            for (const auto& p: last_e_row) {
 | 
			
		||||
                if (p.var() == j) {
 | 
			
		||||
                    return;
 | 
			
		||||
                }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue