Experience-based techniques for problem solving, learning, and discovery

learn more… | top users | synonyms

0
votes
0answers
8 views

developing an anti-cheat search with proxy dll

There's a commom cheat program for a game. I can make a proxy directx dll and inject any code i want in it. should I scan the processlist and then try to find footprints? someone point me in the ...
-1
votes
0answers
32 views

Find the optimal box for a given set of items (3D) [closed]

Given some three dimensional boxes (with lenght, height and width) and a set of Items (sizes also given), I am trying to find the smallest box, in which all items fit. Im looking for an efficient ...
1
vote
1answer
62 views

AI: Graph search and A* implementation

i have a problem. First of all sorry for my bad english but i am Italian :D This is my project for AI course at University of Florence. I have to solve a classic game: Sliding Puzzle with 8 and 15 ...
34
votes
6answers
674 views

A* Admissible Heuristic for die rolling on grid

I need some help finding a good heuristic for the following problem: You are given an R-by-C grid and a six-sided die. Let start and end be two distinct cells on this grid. Find a path from ...
-2
votes
0answers
68 views

Iterative Improvement Algorithms in Travelling Salesman [closed]

I am implementing Iterative Improvement Algorithm for Travelling salesman problem with time window (First and Best) in Java. As It was stated in the book.First and best Improvement Algorithms can give ...
1
vote
3answers
44 views

Looking for some good resources to get started with robotics/AI

I want to study AI and robotics from way back, but I don't know what resources should I start looking into. Are there any users with some expertise in this area that could recommend me something good, ...
0
votes
1answer
29 views

comparator of the worst-fit heuristics priority queue

I'm trying to write a bin-packing program using worst-fit heuristic so that the it adds weights into bins until they cannot store any more as they are read by the file and put the sequence of bins ...
0
votes
0answers
19 views

Heuristic for Bin Packing (Almost worst fit)

i have one question. i'm already search about this problem but i haven't get an answer for this. Almost Worst fit is similar with Worst fit but Almost worst fit put the item in the second-emptiest ...
0
votes
1answer
53 views

Setting up an A* search

I am writing a small section of a program in which i have to write up a pathfinding algorithm. The function takes in what will be known as 'routes' that each define a start and end point in 2D space. ...
0
votes
2answers
50 views

How to have a collection of integers with adaptive ordering based on past success in C++?

I have a set of integers in C++03, where the integers represent guesses relative to a reference point. The algorithm runs through a long list of items, and for each item, it tries each integer guess ...
0
votes
1answer
45 views

AI algorithm possible solution for shortest path

I need advice for heuristic for minesweeper game. If found 10 fields without mine, i am curious how to estimate what should be the next field to open? I was thinking about finding possibility for ...
1
vote
1answer
157 views

Finding cycles in a graph (not necessarily Hamiltonian or visiting all the nodes)

I have graph like one in Figure 1 (the first image) and want to connect the red nodes to have cycle, but cycles do not have to be Hamiltonian like Figure 2 and Figure 3 (the last two images). The ...
0
votes
1answer
56 views

Heuristic for minimax - Board Games

I am implementing an AI player for this board game. I am using AB minimax for search, but I am having trouble finding a good heuristic for the evaluation function. How should I approach this problem? ...
0
votes
2answers
122 views

Heuristic For A* Algorithm

I have a problem to solve with A* but i'm having difficults to design a good heuristic. My problem are: Determine the best route to accomplish by a garbage collection truck in a city that moves on a ...
0
votes
1answer
26 views

heuristic approaches for matching points

I am using SIFT and SURF algorithm. But I need a research about heuristic approaches in point&feature matching. What are the heuristic approaches for matching points in image processing?
3
votes
2answers
105 views

Find basic words and estimate their difficulty

I'm looking for a possibly simple solution of the following problem: Given input of a sentence like "Absence makes the heart grow fonder." Produce a list of basic words followed by their ...
0
votes
1answer
38 views

Heuristics for splitting full names

Splitting a full name into first and last names is an unsolvable problem because names are really, really complicated. As a result, my model, which represents authors and other contributors to a book, ...
0
votes
0answers
391 views

Manhattan distance algorithm for any goal state 8-puzzle [closed]

So, I have to solve the 8 puzzle problem, I choosed A* algorithm with manhattan distance as a heuristic. This is the function that computes the manhattan distance: private static int md(int[][] ...
1
vote
1answer
56 views

Heuristics for the A* using fewest hops

I have a graph of nodes and I need to get from node a to node b. What is a good heuristic function (can be in pseudo code or anything) for getting from point A to point B. The information available is ...
10
votes
2answers
228 views

How can I adapt the Levenshtein Distance algorithm to limit matches to a single word?

I'm using the Levenshtein Distance algorithm in C++ to compare two strings to measure how close they are to each other. However, the plain Levenshtein Distance algorithm does not distinguish word ...
2
votes
1answer
137 views

heuristic (fuzzy) date extraction from the string?

I have a problem to heuristically parse a string of text which contains a date but in a rather arbitrary (unknown) format. function parseDateStr($text) { $cleanText = filter($text); # ... ...
5
votes
1answer
241 views

What are some algorithms for comparing how similar two strings are?

I need to compare strings in C++ to decide whether they represent the same thing. This relates to case titles entered by humans where abbreviations and other small details may differ. For example, ...
1
vote
1answer
145 views

8 tile solver with repeated nodes - Python

i'm trying to solve the 8tile puzzle using techniques like BFS search, DFS, Greedy and A* using Manhattan distance as my heuristic solution. The problem is that while i can solve some good number of ...
0
votes
1answer
114 views

Relationship between genetic representation and fitness function

As you know choosing a genetic representation is a part of building any Genetic Algorithm (GA). A mapping can be hence defined between the genotype space (problem solving space) and the phenotype ...
3
votes
1answer
73 views

How to position a Cocoa window to minimize overlap with other windows?

I'm working on a Cocoa app that has a main window and a preview window. I'd like the preview window to automatically position itself to minimize overlap with other windows — it definitely shouldn't ...
2
votes
2answers
89 views

stealth game AI solver

I'm making an AI for solving a simple stealth game. The objective is to go to the goal point without being caught by enemies(with flashlights). I already implemented a pathfinding algorithm(A*) but ...
4
votes
2answers
296 views

What is the difference between “hill climbing” and “branch-and-bound” search algorithms?

Hill-climbing search and branch-and-bound are two heuristic search algorithms used in artificial intelligence. What is the difference between these two approaches?
-1
votes
1answer
160 views

Which are admissible heuristics and why? [closed]

There are n vehicles on an n x n grid. At the start they are ordered in the top row 1. The vehicles have to get to the bottom row such that the vehicle at (1,n) must get to (n, n − i + 1). On each ...
0
votes
0answers
43 views

Push-relabel gap heuristics

I don't understand how to implement gap heuristics with push relabel. Wiki described it like this: "In gap relabeling heuristic we maintain an array A of size n, holding in A[i] the number of nodes ...
0
votes
0answers
81 views

push relabel algorithm

I have done a MATLAB version of the push-relabel FIFO code (exactly like the one on wikipedia and tried it. The discharge function is exactly like wikipedia. It works perfectly for small graphs (e.g. ...
0
votes
1answer
67 views

Package for solving large scale optimization

I am looking for a package that be strong for solving large scale optimization problem via heuristic method. For global optimizations, I use GAMS/CPlex and for heuristic methods I used MATLAB ...
10
votes
2answers
286 views

A* admissible heuristics on a grid with teleporters?

Suppose that you have a 2D grid of cells, some of which are filled in with walls. Characters can take a step from one square to any square that is one step horizontal or vertical from it, but cannot ...
2
votes
2answers
120 views

Is it possible to prove, if input sequence is random?

Consider following inputs: 1,1,2,3,5,8 - it isn't random 2,4,8,16,32 - this neither 4,1,2,11,5,9- this one looks like random-sequence I would like to ask if is there such algorithm to prove if ...
0
votes
2answers
95 views

Finding path is a mostly empty weighted grid

I need to find a path from A to B in a 8-connected grid (up/down left/right and diagonals). The problem is, this grid is mosty (25-60%) empty, but there are certain spots with high weighted values ...
3
votes
2answers
143 views

Why is this heuristic admissible?

For Tic Tac Toe my lecturer has presented an admissible heuristic (meaning it never overestimates the distance) for the next move in Tic Tac Toe as follows (from the perspective of the O player): ...
6
votes
2answers
103 views

Heuristic for finding elements that appears often together in a big data set

Problem: I have a list of millions of transactions. Each transaction contains items (eg 'carrots', 'apples') the goal is to generate a list of pair of items that frequently occur together in ...
1
vote
1answer
93 views

Can someone please explain 2.5-opt heuristic (also known as 2h-opt) in basic terms?

I am trying to find information that accurately explains 2.5-opt, but I am coming up short. I have read Jon Bentleys "Fast Algorithms for Geometric Traveling Salesman Problems", as well as several ...
-2
votes
1answer
92 views

A* search, ignoring obstacles [closed]

I'm trying to implement the A*search algorithm in java. The problem is that the result (cordlist) completely ignores obstacles defined in the grid. I debug it and it seems like Action, Policy and ...
3
votes
1answer
94 views

Java library to fix incorrectly encoded text using heuristics

I'm dealing with an external web service that is giving me incorrectly encoded (and or corrupted) Strings (UTF-8) that were most likely either ISO LATIN or WINDOWS-1252 but are now UTF-8 (and or a ...
2
votes
1answer
82 views

heuristics - is N a prime number?

I read a positive integer N from the stdin and I'm trying to figure out if N is a prime number. I know I can divide N to all the positive numbers up to sqrt(N), but that's time consuming and my ...
4
votes
2answers
96 views

Should I make my CouchDB database server public-facing?

I'm new to CouchDb and am trying to comprehend how to properly make use of it. I'm coming from MongoDB where I would always write a web layer and put it in front of mongo so that I could allow users ...
1
vote
1answer
106 views

State-of-the art graph coloring metaheuristics

I have a graph coloring problem that involves thousands of vertices that have 10 to 50 edges each. I have been investigating many graph coloring heuristics (GA, tabu search...), but I find them ...
0
votes
0answers
275 views

Flawed 2-opt Search Implementation?

I'm trying to design a 2-opt local search heuristic for the TSP in Java, but my algorithm seems to be flawed. Given a nearest neighbor circuit as in input, it somehow makes the circuit worse. Nearest ...
0
votes
1answer
255 views

Design of Evaluation function for Alpha beta pruning [closed]

I am designing a game of chess and the AI behind it implementing a search tree with alpha-beta pruning. I have a difficulty in designing the evaluation function for the game. How does one go about ...
3
votes
1answer
456 views

A* search algorithm heuristic function

I am trying to find the optimal solution to a Sliding Block Puzzle of any length using the A* algorithm. The Sliding Block Puzzle is a game with white (W) and black tiles (B) arranged on a linear ...
4
votes
2answers
257 views

How to use two different iterators on a Linked List in Java?

I would like to use a linked list in order to perform extractions and insertions of elements, trying out all combinations for a heuristic. Linked lists are more efficient for this type of operations. ...
1
vote
1answer
1k views

Solving 8 puzzle with Best-First Search in Prolog

as the title says, I have to make a prolog progam that solves the 8 puzzle using best-first search, I'm new to Prolog and A. I. so I'm having a hard time. For now what I have is the move rules: %% ...
2
votes
2answers
487 views

Need heuristic function for Reversi(Othello) ideas

I have just studied about heuristic functions but I cant find an idea for heuristic function for reversi(Othello), I just need a good idea for grading some state of the board I thought about : ...
4
votes
1answer
612 views

Eight Queens Heuristic

I am developing a heuristic to place 8 queens on 8x8 chessboard. each square has its own elimination number (to indicate how many squares of an empty chessboard are “eliminated” if a queen is placed ...
-2
votes
2answers
126 views

Programming with Heuristics? [closed]

Could I please have some ideas for a project utilising Heuristics Thankyou in advance for your help

1 2 3 4 5