Tagged Questions
The cnf tag has no wiki summary.
7
votes
5answers
5k views
MySQL: how to determine which config file is being used?
Is there a command to determine which configuration file MySQL 5.0 is currently using?
3
votes
2answers
849 views
Algorithms for optimizing conjunctive normal form expressions for particular instruction sets?
I'm using Espresso logic minimizer to produce a minimized form of a set of boolean equations. However rather than generating logic for a programmable array logic (which is what Espresso is normally ...
2
votes
1answer
39 views
Implement custom library browser / type hierarchy in an Eclipse plugin
I'm creating an Eclipse Plugin for development using the Grammatical Framework (GF), and once of the major features I want to implement a custom "library browser" for searching the GF Resource Grammar ...
2
votes
1answer
133 views
3-cnf-sat with a twist question
If you change the 3-cnf-sat problem as follows:
For each ci, ci = -xi1 OR -xi2 OR xi3 meaning exactly one of the variables appears without a negation.
You are also given values (0 or 1) to some (or ...
1
vote
1answer
86 views
CNF: Remove SOME popup options (from the ones that are platform contributions)
I need to modify popup menus using CNF. I already read documentation about using action providers and about using "allowsPlatformContribution" to restrict options that are platform contributions. I ...
1
vote
1answer
305 views
Eclipse RCP: Does CNF without IDE plug-in require custom ContentProvider?
In an RCP application, I'd like to create a Common Navigator Framework view, starting just with resources on the local file system.
I've done that in one project that includes the org.eclipse.ui.ide ...
1
vote
2answers
201 views
Solving CNF using Prolog
While learning Prolog, I tried to write a program solving CNF problem (the performance is not an issue), so I ended up with the following code to solve ...
0
votes
0answers
8 views
What is the CNF for the following FOL: forall x P(x) <=> forall x Q(x)
I read the wikipedia on the CNF, I understand the steps - in theory. What bothers me is the x-s on the two sides. Do I have to rename the X on the right side?
0
votes
0answers
164 views
Extend the Eclipse Project Explorer with a virtual folder
I have Projects which contain Java-Class-files which are extending a special super-class.
I am trying to add a new, virtual folder to every Eclipse-Project which contain these java-files which are ...
0
votes
1answer
100 views
Chomsky Normal Form correctness
I have these productions:
S->aSb
S-> eps (eps=empty string)
I should apply the Chomsky Normal Form
My reasoning:
1) eliminate the eps rules
Given:
S->aSb
S-> eps
I get:
...
0
votes
0answers
137 views
Marker Filter within new Project Explorer
We have developed a new Perspective for Eclipse by using Common Navigation Framework to configure our own Content and Label provider.
We are also filtering existing projects to show only a subset of ...
0
votes
0answers
172 views
Decorating icons for custom adaptable resources in Eclipse
I've been following this entertaining tutorial to make a customised common navigator and am planning the next step.
My content provider inserts 'virtual' folders that each represent what is actually ...
0
votes
3answers
359 views
Eclipse Common Navigator Framework
I have an Eclipse Common Navigator (specific to our project ) on our RAP application.
So, generally, when user a resource in the left hand side navigator, it gets opened in the right hand side ...
0
votes
1answer
642 views
how to convert boolean expression to cnf file?
i need to use sat solver for checking satisfiability of boolean expressions..
I have complex boolean expression like this
is there any automatic cnf file converter so that i can give it straight ...
0
votes
1answer
235 views
Eclipse RCP: Add project to CNF-based Navigator
I am working on an RCP application. Currently, I am stuck on trying to get the project created from my custom wizard to open the files in my CNF-based navigator. I am not really sure whether it ...
0
votes
1answer
536 views
Convert clauses to CNF
I want to transform my clauses to conjuctive normal form. Clauses are changed each time i run my program, so i guess i need to built-in a tool in my program to do this for me. Is there any suggestionn ...
-1
votes
0answers
21 views
Implementation of Grammar Conversion from Context Free to Chomsky's Normal Form in C [closed]
I have understood the conversion algorithm for conversion of Context free grammars to Chomsky Normal Form.But I am unable to implement it in C programming language.Any help regrading the ...