Sets the Negative Entropy function used to infer the base components. @param G the Negative Entropy function to use
(NegEntropyFunc G)
| 368 | * @param G the Negative Entropy function to use |
| 369 | */ |
| 370 | public void setNegEntropyFunction(NegEntropyFunc G) |
| 371 | { |
| 372 | if(G == null) |
| 373 | throw new NullPointerException("Negative Entropy function must be non-null"); |
| 374 | this.G = G; |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * |