-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have you used it for and what made Prolog a suitable language for the task?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a decent grasp of NP Complete problems; that's not the issue. What I don't have is a good sense of where they turn up in "real" programming. Some (like knapsack and traveling salesman) are obvious, but others don't seem obviously connected to "real" problems.
I've had the experience several…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Academic degree (MCA, BCA etc)
Certification (Adobe certified,Sun
certified, Microsoft certified etc)
and real world experience?
Which is more important to get good job with good salary and freelance or contract based work?
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I am currently majoring in Computer Science and minoring in mathematics (the minor is embedded in the major). The program has a strong C++ curriculum. We have done some UNIX and assembly language (not fun) and there is C and Java on the way in future classes that I must take. The program I am in did…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I'm CTO of a software firm with a large existing codebase (all C#) and a sizable engineering team. I can see how certain parts of the code would be far easier to write in F#, resulting in faster development time, fewer bugs, easier parallel implementations, etc., basically overall productivity gains…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I find useful
groups.google.com/group/comp.lang.prolog/topics
cs.cmu.edu/afs/cs/project/ai-repository/ai/areas/
google.com/Top/Computers/Programming/Languages/Prolog/Implementations/
allisons.org/ll/Logic/Prolog/Examples/
prolog.info/
Maybe there are else useful links? Please share it :-)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was wondering, I am aware you can use assert to add facts or rules or whatever if you have declared the predicate to be -:dynamic, but this only allows the changes that are made to be kept in that session only, e.g. if you close the prolog window then the database changes are lost.
So I was wondering…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to add any strings user entered into a list
run :- write('How many students you have: '),read(x),nl.
enterNameOfStudents(x).
enterNameOfStudents(x) :- for(A, 1, x, 1),write('Please enter the names of students'),read(A),??????,nl,fail.
What do i put in the ?????? portion to ensure…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have you used it for and what made Prolog a suitable language for the task?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello!
I'm diving into the world of prolog headfirst but I seem to have hit shallow water!
I'm looking at database manipulation in prolog with regards to this tutorial:Learn Prolog Now!
It states that I can see my database by entering listing
So i tried it and it should basically output everything…
>>> More