Common Navigator Framework - Eclipse platform provides this framework for tree based viewers
Questions tagged [cnf]
69 questions
0
votes
0 answers
Conversion to CNF (stuck)
I've managed to simplify an expression to the following (both the original expression and the version below resolve to the same CNF according to WolphramAlpha).
What next?
(~C || C || ~A) && (~A || ~B || C)

Leon
- 23
- 2
0
votes
1 answer
Java Class Load from Linux Terminal
I am trying to load my java Harness class (DaCapo Benchmark suite) with the appropriate benchmarks java classes (cnf.files). In windows the command " java Harness works absolutely fine. However, since I am new to Linux when I try to load my java…

Spyros
- 35
- 5
0
votes
1 answer
Eclipse RCP: Change target of an action to another item
I've got a tree in a view builded with Common Navigation Framework. I've got a custom item MyTreeEntry that contains an IFolder object.
public class MyTreeEntry implements IWorkbenchAdapter {
private IFolder iFolder;
[...]
}
I want to see for…

Tommaso DS
- 211
- 2
- 14
0
votes
1 answer
Split and/or partitioning large CNF file / Matrix
simple issue. I have a very large CNF file with represents an m x n Matrix. lets say >10000 variables with related terms. So as a first step I want to partitioning the CNF file or even better split the matrix to variables of 100 for parallel solving…

Adrian Monk
- 73
- 2
- 11
0
votes
1 answer
Conversion to CNF
This is for an assignment. I have to convert the set of statements to CNF and implement them. I know that I need to convert the input in prefix notation it to infix first and then repeatedly apply De Morgans's Laws. However, I don't know how to…

P R
- 1,293
- 7
- 28
- 58
0
votes
1 answer
Enable Action in navigator popup when nothing is selected
I have added an option in eclipse cnf as mentioned below:

Priyank Thakkar
- 4,752
- 19
- 57
- 93
0
votes
2 answers
Refreshing a tree viewer
I am using common navigator framework(CNF) for my project explorer view.
I have set the content provider and label provider for the tree viewer. When a data changes internally in my application, i need to update the tree view also(eg. just like…

Girish Chandran C
- 111
- 13
-1
votes
1 answer
How to read a CNF file?
i'm working on argumentation system made by Dung
how to read this file content?
it's a cnf file describe an abstract argumentation framework
enter image description here

Mimi
- 13
- 4
-1
votes
1 answer
Proposition Logic : CNF Conversion
I'm trying to solve a simple exercise in which I have to convert a propositional sentence in CNF :
This is the sentence :
P => (Q <=> R)
According to the resolution rule the first thing I did is to eliminate the <=> symbol in this way :
P => (Q <=>…

KiririIG
- 321
- 2
- 5
- 11