The first 3 methods are used in the internal computation for reducing the logic-terms
And, the last 2 methods are the method for the quosi-optimized simplification in the realizing stage.
[ f ] = AndOr()
{
1,-2,3,-4,-5,-6 ;
-1,-2,3,4,-5,6 ;
-1,2,3,-4,-5,6 ;
1,-2,3,4,5,6 ;
-1,-2,-3,4,-5,6 ;
1,2,-3,4,5,6 ;
1,2,-3,-4,-5,6 ;
1,2,-3,-4,5,6 ;
1,2,-3,4,5,6 ;
-1,2,-3,-4,5,6 ;
}
// [ g ] = Simplification.Full(f);
[ g ] = Simplification.Shannon(f);
Print("result:", g);
/*
The result should be :
g = AndOr()
{
1,2,-3,-4,6;
1,2,-3,5,6;
-1,-2,4,-5,6;
2,-3,-4,5,6;
1,-2,3,4,5,6;
1,-2,3,-4,-5,-6;
-1,2,3,-4,-5,6;
}
*/