Re: How to use Jlink to access Mathematica Boolean Functions
- To: mathgroup at smc.vnet.net
- Subject: [mg126310] Re: How to use Jlink to access Mathematica Boolean Functions
- From: DCWhatthe <galois at nycap.rr.com>
- Date: Mon, 30 Apr 2012 04:41:59 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
It looks like the answer is as simple as using Evaluate et al, e.g. String sBooleanFunction = ml.evaluateToOutputForm("BooleanFunction[30,{ x, y, z }]", 0); This returns the expected function string, (x && !y && !z) || (!x && y) || (!x && z)