The tournament tag has no wiki summary.
0
votes
0answers
38 views
Calling member of a set (general form) in LINGO 9.0 optimization software
right to the point,
i'm trying to make a schedule of football tournament consists of 12 Teams.
There is a constraint called "same city".
example: team A and team B are from the same city and they are ...
0
votes
1answer
168 views
JavaScript to sort tournament seeds
I have used some posts on here to create a tournament bracket system using JavaScript and Jquery to show the brackets.
I have 16 teams seeded 1-16. At the moment my sorted seeds are as follows:
...
0
votes
2answers
201 views
general algorithm of tournament selection
I have a question about how to use a tournament selection in GA. Suppose that I have 100 individuals as an initial population and then I want to apply tournament selection for n generations, so I end ...
-11
votes
1answer
579 views
How to display a tournament Bracket on asp.net-mvc? [closed]
I want to build a tournament bracket website on asp.net-mvc.
I see this solution on regular asp.net but not for mvc.
Does anyone have a mvc implementation of a tournament bracket (both single and ...
4
votes
1answer
273 views
Data structure for various tournament/competition types (league, ladder, single/double elimination etc.)
I'm attempting to build a system where users can easily create various types of tournaments and participate in them with other users. It's for no specific game, but instead a general purpose tool for ...
0
votes
0answers
19 views
tournament travelling distance LINGO scripting
I'm working on a schedule of a football tournament with integer programming. Using LINGO software as a tool to work on it. Minimize traveling distance is my objective. There are 12 teams and i already ...
1
vote
0answers
42 views
travelling tournament assignment
I'm working on a schedule of a football tournament with integer programming. Using LINGO software as a tool to work on it. Minimize traveling distance is my objective. There are 12 teams and i already ...
1
vote
2answers
130 views
Ruby On Rails and Challonge API
I'm pretty new, but getting the concepts of Ruby on Rails. I'm trying to get a tournament up and running. I added the gem as a dependency in the Gem file; however, I'm unsure where to add my username ...
1
vote
0answers
162 views
Number of tournament outcomes with N (labeled) players
Wikipedia defines a tournament in the following way:
'A tournament is a directed graph (digraph) obtained by assigning a direction for each edge in an undirected complete graph. That is, it is an ...
0
votes
0answers
37 views
Could anyone enlighten me on this? Set Directory Mode
I am looking at a site about tournament brackets and I am only using this as a reference for it is copyrighted, but as I am testing the code, I cannot seem to save the changes I make even though I ...
1
vote
1answer
173 views
Best way to draw tournament bracket in Android
I need to draw a tournament bracket in Android. I already calculated the positions for all games (i.e. an (x,y) tuple that defines where to place teams in a spreadsheet-like structure). However, I ...
2
votes
2answers
920 views
PHP Single Elimination Tournament Table
I've looked through several other posts similar to this but can't find anything that suits what I'm looking for...
I've managed to hard code an 8 team tournament brackets table but I really want a ...
0
votes
1answer
91 views
Sides Elimination in directed cyclic graph or Tournament (graph)
I wanted an algorithm to eliminate the sides of a cyclic directed graph or mostly a Tournament and output a tree kind of structure with minimum number of sides.
The elimination should be based on the ...
2
votes
1answer
276 views
Open-ended tournament pairing algorithm
I'm developing a tournament model for a virtual city commerce game (Urbien.com) and would love to get some algorithm suggestions. Here's the scenario and current "basic" implementation:
Scenario
...
1
vote
3answers
596 views
Double Elimination Tournament Algorithm for byes %4
I'm trying to code a Double Elimination tournament where the brackets are based on mod 4. The first round should handle all of the byes so that after round 2 there will be no more byes. I'm having a ...
0
votes
1answer
545 views
tournament selection
Im trying to implement a GA with tournament selection, but im a bit confused. I know first we select randomly k member from whole population. Then we choose the best one by using tournament size (lets ...
2
votes
1answer
273 views
Optimizing brackets for a tournament
I'm building a system that will create a tournament based on a list of contenders.
Contenders have properties that might make them not able to be placed in brackets with eachother, such as gender, ...
4
votes
2answers
1k views
c# How to generate a tournament bracket HTML table
so i have been stuck with this issue for 3 weeks now and i couldn't for the life of me figure it out.
what im trying to do is to get this kind of output/presentation using tables.
...
-3
votes
2answers
3k views
PHP Tournament Bracket [closed]
I need to write php tournament system with bracket.
Like in ESL web site. the php should draw the bracket if for example there are 4 players there should be 2 round.
but I don't know how can start ...
1
vote
1answer
985 views
PHP Tournament Bracket System
Happy new year to all!!
I'm trying to make starcraft 2 tournament web site for me and friends.
i stuck on tournament system.
I have a jquery script that makes a bracket but I couldn't figure out ...
2
votes
1answer
279 views
How to determinate round by element in tree (Tournament brackets)?
Assume we have following tree:
1
9
2
13
3
10
4
15
5
11
6
14
7
12
8
Where elements(matches):
1-8 is round 1
9-12 is round 2
13-14 is round 3
15 is ...
0
votes
1answer
462 views
Tournament bracket with user input (php?)
Basically I would like some help on how to implement my idea. Any direction would be appreciated. I'm not sure what languages I should be using, or if I need a MySQL database of some kind.
I want to ...
1
vote
0answers
336 views
How can I build a complex polymorphic association which includes ActiveResource classes?
I'm attempting to build a diverse tournament management system which allows multiple types of tournament bracket backends. The goal is to provide a very simple option for the tournament bracket ...
0
votes
0answers
94 views
Multiplying values during a permutation to get the percentages of winning
There is a tournament. 11 player at the beginning starting with 1000 points. 4 players left: (5000,3000,2000,1000) is their actual point-count. Only the first three people will get a share of the ...
2
votes
4answers
2k views
Tournament bracket placement algorithm
Given a list of opponent seeds (for example seeds 1 to 16), I'm trying to write an algorithm that will result in the top seed playing the lowest seed in that round, the 2nd seed playing the 2nd-lowest ...
0
votes
1answer
359 views
Graph Theory - Rankings in a Tournament
Given a tournament graph like this :
How do you find out how many rankings there are systematically?
Help / explanation would really be appreciated.
-1
votes
1answer
59 views
How to offer Practice And Tournament Modes in my game? [closed]
I'm developing a turn-based Android game. I'm contemplating offering two modes for my game - a practice mode where users can familiarize themselves and a tournament mode where they would actually play ...
0
votes
2answers
99 views
How can I derive the winners of a match from a table of games that relate to a table of matches?
In a database that stores tournaments I have this relational structure to store matches and their games:
EER Diagram
When a match is created, a match row and multiple game rows are inserted ...
2
votes
1answer
977 views
Recursive Algorithm for Tournament Brackets
I am creating a tournament bracket creation script, and I am getting stuck with tournaments with the number of players Non - Power of 2. For instance, it is currently working great for 2, 4, 8, 16, ...
1
vote
1answer
382 views
C# - Recommended SDK/Toolkit(s) For Drawing Tournament Bracket
I would like to develop a UI for creating/displaying single elimination brackets in C#. The only problem is, I am not a UI developer and I don't really know if there is a particular ...
0
votes
1answer
243 views
Listview, Webview or ? to create a tournament draw
I am wondering what the best way to render a tournament draw (scrollable) might be for Android.
Since I am new to this, I was not sure whether to invest time creating a ListView sort of thing or ...
3
votes
2answers
7k views
Drawing a tournament bracket (CSS/HTML based on PHP Dataset)
If you're not familiar with what I mean by tournament bracket, see here:
http://baseballguru.com/bracket1.gif
That said, I have built the dataset and figured out the number of rounds ...
1
vote
1answer
712 views
Modelling tournament brackets in MongoDB
I've been experimenting with MongoDB in order to move some parts of an app to it. I'm thinking a document-based db like mongodb would be a nice fit for tournament brackets but I'm having sort of a ...
1
vote
1answer
975 views
Algorithm to calculate the number of matches in Swiss system tournament
I need to calculate the number of matches in a Swiss system tournament, is there any library in php that can help me?
2
votes
3answers
1k views
Any Tournament APIs out there?
Are there any APIs for helping running tournaments that can draw brackets, count scores, etc? Something on PHP/javascript would be nice but I can't find any.
Thanks.
1
vote
3answers
2k views
Multiple Iterations of Tournament Selection in Genetic Algorithm
Hey guys, I'm a bit confused about how multiple iterations of the tournament selection works.
I know you start selecting random pairs (or k members) and putting the winner into a mating pool. You ...
6
votes
4answers
2k views
Data structure for Double Elmination Tournament
I am in the process of converting my Tournament Organizer software, which allows the creation and manipulation of Double Elimination Tournaments, to use the MVVM design pattern so that it can be more ...
0
votes
2answers
878 views
dominating set of a tournament graph
I am writing an algorithm to find the dominating set of a tournament graph. Is the minimum spanning tree of a directed graph equivalent to the dominating set of the graph? In other words, if I find ...
1
vote
1answer
982 views
Tournament graph question(s)
Is a tournament graph the same thing as a directed complete graph? And, do all vertices in a tournament graph have the same number of edges?