You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							405 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							405 B
						
					
					
				
								#include "test_MI.h"
							 | 
						|
								
							 | 
						|
								int test_MI_div (int iterations)
							 | 
						|
								{
							 | 
						|
									int error = 0;
							 | 
						|
									int i;
							 | 
						|
									// Check against multiplication.
							 | 
						|
									for (i = iterations; i > 0; i--) {
							 | 
						|
										cl_I m = testrandom_I();
							 | 
						|
										cl_modint_ring R = find_modint_ring(m);
							 | 
						|
										cl_I ai = testrandom_I();
							 | 
						|
										if (gcd(m,ai)==1) {
							 | 
						|
											cl_MI a = R->canonhom(ai);
							 | 
						|
											cl_MI b = R->canonhom(testrandom_I());
							 | 
						|
											ASSERT3(a*R->div(b,a) == b, m,a,b);
							 | 
						|
										}
							 | 
						|
									}
							 | 
						|
									return error;
							 | 
						|
								}
							 |