Forum: Java Apr 17th, 2006 |
| Replies: 11 Views: 5,194 Hi,
I think a'c'+b'c' can further be simplified. Currently it consists of 7 boolean operators (4 not, 2 and, 2 or; but of course on circuit implementation you won't implement c' twice so you... |
Forum: Java Apr 15th, 2006 |
| Replies: 11 Views: 5,194 Hi,
In case minimization is important then check http://www.c-sharpcorner.com/Code/2003/Feb/GAAdderDesign.asp . I have a more advanced GA implementation for logic circuit optimization, which... |
Forum: Java Apr 14th, 2006 |
| Replies: 11 Views: 5,194 Hi,
Do you need the optimal (most simplified) equation ? If not you can easily write the equation as the sum of products : a'b'c'z+a'b'cz'+a'bc'z+...
Loren Soth |
Forum: Java Mar 26th, 2006 |
| Replies: 9 Views: 1,453 Hi,
Assuming you already have a stack class implemented. Start with an empty stack and just read your string char by char if it is a "(" or "[" push that char to your stack; if it is a ")" or... |
Forum: Java Mar 22nd, 2006 |
| Replies: 9 Views: 2,247 Hi,
1-There are 2 versions (actually 3 with J2EE) of Java J2SE (standart) and J2ME (mobile). J2ME w/ MIDP profile is mostly used on cell phones for games. It all depends on the PalmOS version... |
Forum: Java Mar 22nd, 2006 |
| Replies: 2 Views: 17,756 Hi,
It might be related to the security settings on your web server and not to the code. What is your web server, and TomCat support if you use any.
Loren Soth |