Tagged Questions
The inference tag has no wiki summary.
28
votes
4answers
4k views
What is Hindley-Milner?
I encountered this term "Hindley-Milner" which I'm not sure if grasp what it means. I read Steve Yegge's "Dynamic Languages Strike Back" and "The Pinocchio Problem" and Daniel Spiewak's "What is ...
23
votes
3answers
3k views
C#: Difference between ' += anEvent' and ' += new EventHandler(anEvent)'
Take the below code:
private void anEvent(object sender, EventArgs e) {
//some code
}
What is the difference between the following ?
[object].[event] += anEvent;
//and
[object].[event] += ...
13
votes
11answers
1k views
Why not infer template parameter from constructor?
my question today is pretty simple: why can't the compiler infer template parameters from class constructors, much as it can do from function parameters? For example, why couldn't the following code ...
7
votes
2answers
164 views
Constants and compile time evaluation - Why change this behaviour
If you forward to approximately 13 minutes into this video by Eric Lippert he describes a change that was made to the C# compiler that renders the following code invalid (Apparently prior to and ...
7
votes
1answer
237 views
Scala type (inference) issue?
I'm developing a REST webservice in Scala using the Jersey JAX-RS reference implementation and I'm getting a strange error.
I'm trying to create a ContentDisposition object using the ...
6
votes
1answer
151 views
Scala compiler cannot infer mix-in type for pattern matching
I have a use case for algebraic groups over finite permutation sets. Because I would like to use the group for various permutation classes which are otherwise unrelated, I would like to do this as a ...
6
votes
2answers
139 views
Prolog Beginner - Is This a Bad Idea?
The application I'm working on is a "configurator" of sorts. It's written in C# and I even wrote a rules engine to go with it. The idea is that there are a bunch of propositional logic statements, and ...
6
votes
4answers
302 views
Inference from Generic Type Question
I suppose this is more of a public rant, but why can't I get c# to infer my Id's type?
public EntityT Get<EntityT>(IdT id) where EntityT : EntityObject<IdT>
and a defined EntityObject ...
5
votes
1answer
276 views
Objective-C Type Inference
Okay, I have a feeling that you guys'll be able to quickly point out why I'm so confused about this, but I have a question as to why the following does NOT result in a compiler error or warning:
...
4
votes
1answer
59 views
Type inference for type arguments of generic methods
I'm a newby to Stack Overflow so please go easy on me! I'm reading C# in Depth but I've come across a scenario that I don't believe is covered. A quick search of the web didn't throw up any results ...
4
votes
2answers
144 views
Search control in Haskell
Suppose you're writing a program that searches an exponentially large or infinite space: gameplaying, theorem proving, optimization etc, anything where you can't search the entire space, and the ...
4
votes
6answers
309 views
Why doesn't C# do “simple” type inference on generics?
Just curious: sure, we all know that the general case of type inference for generics is undecidable. And so C# won't do any kind of subtyping at all: if Foo<T> is a generic, Foo<int> ...
4
votes
6answers
402 views
Inference engine to calculate matching set according to internal rules
I have a set of objects with attributes and a bunch of rules that, when applied to the set of objects, provides a subset of those objects. To make this easier to understand I'll provide a concrete ...
4
votes
3answers
439 views
calling template function without <>; type inference
if I have a function template with typename T, where the compiler can set the type by itself, I do not have to write the type explicitely when I call the function like:
template < typename T > ...
4
votes
7answers
1k views
Is solving the halting problem easier than people think?
Although the general case is undecidable, many people still do solve problems that are equivilent well enough for day to day use.
In cohen's phd thesis on computer viruses, he showed how virus ...
3
votes
1answer
76 views
Python tools/libraries for Semantic Web: state of the art?
What are the best (more or less mature, supporting more advanced logic, having acceptable performance, scalable to some extent) open source Semantic Web libraries and tools (RDF storage, reasoning, ...
3
votes
2answers
120 views
Scala-IDE or Scala unjustified syntax ambiguity
I am learning Scala with Scala-IDE in Eclipse. While following the Chapter 9: Control Abstraction, part 1: Reducing Code Duplication in the Programming in Scala book, I have written the code from the ...
3
votes
2answers
139 views
bindParameter function with variadic templates in C++11
I'm trying to write a simple function to convert a std::function<> object while binding the last parameter(s). That's what I've got:
template<typename R, typename Bind, typename ...Args> ...
3
votes
3answers
578 views
Forward chaining and Backward chaining in java
What will be the best approach to implement forward chaining and backward chaining for reasoning process in java?
We have been given Horn-form knowledge base which has set of statements.
I have ...
3
votes
1answer
160 views
Equality inference in F# + records with mutable fields
The common equality/comparison members design guideline is to not implement structural equality on mutable reference types, but take a look at F# record types with mutable fields:
type Value = { ...
3
votes
2answers
220 views
C#: Less ugly syntax for creating delegate lists?
I'm building a system a bit like LINQ, and in doing it, am trying to support polymorphic callback handler lists, and am running into several kinds of problems. The short way to ask my question is to ...
2
votes
3answers
39 views
A reverse inference engine (find a random X for which foo(X) is true)
I am aware that languages like Prolog allow you to write things like the following:
mortal(X) :- man(X). % All men are mortal
man(socrates). % Socrates is a man
?- mortal(socrates). % ...
2
votes
0answers
76 views
GA grammar induction program/code?
Does anyone know of a program that uses a GA to perform grammar induction/inference, I've read tonnes of research papers and articles on this stuff like Lankhorst and De Pauw but I can't find any ...
2
votes
1answer
117 views
Allegrograph - Functors like RDF objects properties?
Using Allegrograph, Prolog functors are pretty awesome, but there is one downside.
Let's say you define a functor that links two entities, for example parentOf which equals to "!n:motherOf OR ...
2
votes
4answers
221 views
Type deduction of function template parameters
I have some questions concerning function templates.
My plan was to build a wrapper which derives from a user-defined class and
not only exports the public functions of that class but also its ...
2
votes
1answer
753 views
Inferring using Jena
InfModel infmodel = ModelFactory.createInfModel(reasoner, m);
Resource vegetarian = infmodel.getResource(source + "Vegetarian");
Resource margherita = infmodel.getResource(source + ...
2
votes
1answer
229 views
Ontology - Conflict of same individuals property and datatype property
I am having a problem with "same individuals property" in protege, when i run a reasoner (pellet 1.5 or fact++)
Lets take ontology example
thing has class sons A and B, A has sons C and D.
B, C ...
2
votes
1answer
131 views
F# Type Inference and System.Object
I have a problem getting the following code to work.
open System
open System.ComponentModel
open System.Threading
let triggerEvent (state : Object) = Console.Write("Do Something.")
let asyncContext ...
2
votes
3answers
142 views
How could I get data for an intelligent suggestion list?
I want to build a suggestion list where that when I enter "PHP" it knows to suggest "Web Development," and if I enter "Data Recovery" "or "Software Installations," it suggests "Information ...
1
vote
3answers
48 views
text to facts for Inference Engine
I am looking for a program or algorithm that will analyze text and produce facts/rules from it that can be fed to an inference engine for question answering. Are there any good commercial or open ...
1
vote
1answer
37 views
Forming rules from facts. Rule based programming
Learning Clips, while I don't mind the syntax I'm finding it difficult to derive rules from facts. Is there a tip on how to structure rules given a knowledge base?
A non trivial example would be ...
1
vote
1answer
64 views
Lightweight inference engine interfaceable with Ruby
I have a large Ruby application that is just crying out for the addition of an inference engine; I don't need a lot of functionality, am not afraid of integrating C libraries, and am coming up empty ...
1
vote
0answers
60 views
Build a SKOS Reasoner rule-based
I have to build a reasoner for ontologies SKOS to reason with rules made in CLIPS / Jess. I want to have simple forms of automated reasoning.
I could not find anything specifically to help me create ...
1
vote
2answers
87 views
C# generic interface type inference question
I'm not sure how to phrase this question concisely without just giving the example so here goes:
public interface IThing<T>
{
void Do(T obj);
}
public class ThingOne : IThing<int>
{
...
1
vote
1answer
155 views
Ideal algorithmic approach — Rule-engine / Decision-Tree and some Learning logic?
My requirement is probably close to what one expects of an "Expert System". And looking for the simplest solution, that can give me real-time or near-real time inference, with some offline ...
1
vote
2answers
118 views
Inference Engine implementation in java
I am trying to think of an algorithm where I can create number of possible binary combinations for my inference engine implementation
in short if input file to my program has 4 distinct variables my ...
1
vote
2answers
126 views
Grammar inference library?
What are the best (or any) open source libraries for regular or context-free grammar inference from a set of examples believed to be generated by a common grammar? I'd prefer a good library in Java, ...
1
vote
2answers
133 views
What's the difference between an inference machine and a semantic reasoner?
I found some short articles about both, and for me it sounds like both figure out things through logic, similar to how Prolog works. I must add I am new to this field so I might be wrong. Very wrong.
1
vote
1answer
306 views
Null Pointer Exception with Drools-Guvnor
I’m using the example code from the Red Hat Magazine - http://magazine.redhat.com/2008/08/12/jboss-drools-how-to-tuning-guvnor-part-1/ - to try to get the sample code to work, but I keep getting the ...
1
vote
1answer
499 views
understanding working of Drools guvnor
can any one plz let me know that how drool guvnor work i went to guvnor documentation but couldn't understand the core logic of how rules are processed and how we can use drools guvnor in coherence ...
1
vote
1answer
65 views
Inference mechanism on collaborative knowledgebase (Freebase)?
Freebase is probably the awesomest collaborative knowledge base available. Does anybody know if its powerful api provide some inference drawing mechanism? If not can any one point me to some example ...
1
vote
1answer
205 views
Need an automatic image tagging API, any suggestions?
I'm building an application which needs to take an image and infer tags related to it. Those tags can be about things, adjectives or even emotions related to the picture.
I've already found ALIPR. ...
1
vote
1answer
134 views
Problem in inferring instances that have integer cardinality constraint
I have created an RDF/OWL file using Protege 4.1 alpha.
I also created a defined class in Protege called CheapPhone. This class has a restriction which is shown below :
(hasPrice some integer[< ...
1
vote
1answer
140 views
Jena Effects of Different Entailment Regimes
I am trying sparql and the use of entailment.
As a example i used http://www.w3.org/TR/2010/WD-sparql11-entailment-20100126/#t112
i try to put them in jena.
OntClass book1= ...
1
vote
2answers
266 views
Why can't these generic type parameters be inferred?
Given the following interfaces/classes:
public interface IRequest<TResponse> { }
public interface IHandler<TRequest, TResponse>
where TRequest : IRequest<TResponse>
{
...
1
vote
1answer
300 views
make inference rule for files in a folder
I use GNU make, I want my source files and object files to be in different folders.
As a first step, I want the source files at the root of my project folder, and the object files in a subfolder (say ...
1
vote
4answers
147 views
How does del.icio.us know what tags to suggest for a URL?
When I bookmark http://dbpedia.org/About, del.icio.us suggests "xml" and "programming" as tags. How does it know that the URL relates to these topics?
0
votes
1answer
55 views
facts in prolog that I have checked before
I have this knowledge base in prolog...
start :- navabi(C).
male(X,N) :-
write('Is this a male? '), flush_output,
read(yes).
navabi(N):- male(N) -> print('he is navabi') ; mirian(N).
...
0
votes
0answers
39 views
probabilities and bayesian inference [closed]
In a 5 by 5 chessboard I have 5 pawns: a1,b1,c1,d1,e1
There are a total of 13 possible moves: a1->a2,b2 b1->a2,b2,c2 c1->b2,c2,d2 d1->c2,d2,e2 e1->d2,e2.
So probability for any pawn to make a move is ...
0
votes
2answers
293 views
Implement Bayesian inference using Java
Is there any implementation in java like this in php?
<?php
/**
* Returns conditional probability of $A given $B and $Data.
* $Data is an indexed array. Each element of the $Data array
* ...