Is there any open source Java Library or java source code to simplify Boolean expression like
!((A.B+C).(!A+BC))
Where,
! - represents NOT
+ - represents OR
. - represents AND
Your help would be greatly appreciated in this regard
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First of all let me confirm if I get your question correctly – are you looking at ability to code the given expression in simplified manner?
If yes then you can try Xtend : http://eclipse.org/xtend/ and Xtext http://www.eclipse.org/Xtext/
Xtend is a statically-typed programming language which compiles to comprehensible Java source code. Xtend is developed using Xtext.
Xtext is a framework for development of programming languages and domain specific languages.
Above info is not applicable if you are looking at algorithm to simply the given expression.
Hope the information is useful to you.