# include # include # include # include # include using namespace std; int main ( int argc, char *argv[] ); int circuit_value ( int n, int bvec[] ); void i4_to_bvec ( int i4, int n, int bvec[] ); void timestamp ( ); //****************************************************************************80 int main ( int argc, char *argv[] ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for SATISFY_MPI. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 16 June 2016 // // Author: // // John Burkardt // // Reference: // // Michael Quinn, // Parallel Programming in C with MPI and OpenMP, // McGraw-Hill, 2004, // ISBN13: 978-0071232654, // LC: QA76.73.C15.Q55. // { # define N 23 int bvec[N]; int i; int id; int ihi; int ihi2; int ilo; int ilo2; int j; int n = N; int p; int solution_num; int solution_num_local; int value; double wtime; // // Initialize MPI. // MPI_Init ( &argc, &argv ); // // Determine the rank of this processor. // MPI_Comm_rank ( MPI_COMM_WORLD, &id ); // // Determine the number of processors. // MPI_Comm_size ( MPI_COMM_WORLD, &p ); // // Let process 0 print the opening remarks. // if ( id == 0 ) { cout << "\n"; timestamp ( ); cout << "\n"; cout << "SATISFY_MPI\n"; cout << " C++/MPI version\n"; cout << " We have a logical function of N logical arguments.\n"; cout << " We do an exhaustive search of all 2^N possibilities,\n"; cout << " seeking those inputs that make the function TRUE.\n"; } // // The BIG calculation goes from 0 = ILO <= I < IHI = 2*N. // Compute the upper limit. // ilo = 0; ihi = 1; for ( i = 1; i <= n; i++ ) { ihi = ihi * 2; } if ( id == 0 ) { cout << "\n"; cout << " The number of logical variables is N = " << n << "\n";; cout << " The number of input vectors to check is " << ihi << "\n"; cout << "\n"; cout << " # Processor Index ---------Input Values------------------------\n"; } // // Processor ID takes the interval ILO2 <= I < IHI2. // Using the formulas below yields a set of nonintersecting intervals // which cover the original interval [ILO,IHI). // ilo2 = ( ( p - id ) * ilo + ( id ) * ihi ) / ( p ); ihi2 = ( ( p - id - 1 ) * ilo + ( id + 1 ) * ihi ) / ( p ); cout << "\n"; cout << " Processor " << id << " iterates from " << ilo2 << " <= I < " << ihi2 << "\n"; cout << "\n"; // // Check if BVEC is a solution. Then "increment" BVEC. // solution_num_local = 0; if ( id == 0 ) { wtime = MPI_Wtime ( ); } for ( i = ilo2; i < ihi2; i++ ) { i4_to_bvec ( i, n, bvec ); value = circuit_value ( n, bvec ); if ( value == 1 ) { solution_num_local = solution_num_local + 1; cout << " " << setw(2) << solution_num_local << " " << setw(8) << id << " " << setw(10) << i; for ( j = 0; j < n; j++ ) { cout << " " << bvec[j]; } cout << "\n"; } } // // Process 0 gathers the local solution totals. // MPI_Reduce ( &solution_num_local, &solution_num, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD ); // // Let process 0 print the closing remarks. // if ( id == 0 ) { wtime = MPI_Wtime ( ) - wtime; cout << "\n"; cout << " Number of solutions found was " << solution_num << "\n"; cout << " Elapsed wall clock time (seconds) " << wtime << "\n"; } // // Terminate MPI. // MPI_Finalize ( ); // // Terminate. // if ( id == 0 ) { cout << "\n"; cout << "SATISFY_MPI\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); } return 0; # undef N } //****************************************************************************80 int circuit_value ( int n, int bvec[] ) //****************************************************************************80 // // Purpose: // // CIRCUIT_VALUE returns the value of a circuit for a given input set. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 20 March 2009 // // Author: // // John Burkardt // // Reference: // // Michael Quinn, // Parallel Programming in C with MPI and OpenMP, // McGraw-Hill, 2004, // ISBN13: 978-0071232654, // LC: QA76.73.C15.Q55. // // Parameters: // // Input, int N, the length of the input vector. // // Input, int BVEC[N], the binary inputs. // // Output, int CIRCUIT_VALUE, the output of the circuit. // { int value; value = ( bvec[0] || bvec[1] ) && ( !bvec[1] || !bvec[3] ) && ( bvec[2] || bvec[3] ) && ( !bvec[3] || !bvec[4] ) && ( bvec[4] || !bvec[5] ) && ( bvec[5] || !bvec[6] ) && ( bvec[5] || bvec[6] ) && ( bvec[6] || !bvec[15] ) && ( bvec[7] || !bvec[8] ) && ( !bvec[7] || !bvec[13] ) && ( bvec[8] || bvec[9] ) && ( bvec[8] || !bvec[9] ) && ( !bvec[9] || !bvec[10] ) && ( bvec[9] || bvec[11] ) && ( bvec[10] || bvec[11] ) && ( bvec[12] || bvec[13] ) && ( bvec[13] || !bvec[14] ) && ( bvec[14] || bvec[15] ) && ( bvec[14] || bvec[16] ) && ( bvec[17] || bvec[1] ) && ( bvec[18] || !bvec[0] ) && ( bvec[19] || bvec[1] ) && ( bvec[19] || !bvec[18] ) && ( !bvec[19] || !bvec[9] ) && ( bvec[0] || bvec[17] ) && ( !bvec[1] || bvec[20] ) && ( !bvec[21] || bvec[20] ) && ( !bvec[22] || bvec[20] ) && ( !bvec[21] || !bvec[20] ) && ( bvec[22] || !bvec[20] ); return value; } //****************************************************************************80 void i4_to_bvec ( int i4, int n, int bvec[] ) //****************************************************************************80 // // Purpose: // // I4_TO_BVEC converts an integer into a binary vector. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 20 March 2009 // // Author: // // John Burkardt // // Parameters: // // Input, int I4, the integer. // // Input, int N, the dimension of the vector. // // Output, int BVEC[N], the vector of binary remainders. // { int i; for ( i = n - 1; 0 <= i; i-- ) { bvec[i] = i4 % 2; i4 = i4 / 2; } return; } //****************************************************************************80 void timestamp ( ) //****************************************************************************80 // // Purpose: // // TIMESTAMP prints the current YMDHMS date as a time stamp. // // Example: // // 31 May 2001 09:45:54 AM // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 24 September 2003 // // Author: // // John Burkardt // // Parameters: // // None // { # define TIME_SIZE 40 static char time_buffer[TIME_SIZE]; const struct tm *tm; time_t now; now = time ( NULL ); tm = localtime ( &now ); strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); cout << time_buffer << "\n"; return; # undef TIME_SIZE }