I'm currently in the process of implementing a number of different assignment algorithms for a SalesLead <--> SalesPerson situation. The general idea is quite simple:
A SalesLead signs up on a public website
The code automatically assigns the SalesLead to a SalesPerson using round-robin scheduling (Leads are assigned to SalesPersons in...
            
           
          
            
            Given multiple (x,y) ordered pairs, I want to compare distances between each one of them.
So pretend I have a list of ordered pairs:
pairs = [a,b,c,d,e,f]
I have a function that takes two ordered pairs and find the distance between them:
def distance(a,b):
    from math import sqrt as sqrt
    from math import pow as pow
    d1 = pow...
            
           
          
            
            Hi!!
I am having some trouble to achieve this little round robin project. What i try to do is to generate a preview calendar of games
then I want to output;
day 1:
Team 1 vs Team 2;
Team 3 vs Team 4;
Team 5vs Team 6;
day 2
Team 1 vs Team 4;
Team 6 vs Team 3;
Team 2 vs Team 5;
till the end of the championship;
Here is the code i've ...
            
           
          
            
            is it possible to use quartz.net with a simple round-robin tasks scheduling mechanism?
i mean does quartz.net has something built-in for round-robin scheduling? (i didn't find one yet)
...
            
           
          
            
            Hi,
I have a Customers table and would like to assign a Salesperson to each customer in a round-robin fashion.
Customers  
--CustomerID  
--FName  
--SalespersonID
Salesperson  
--SalespersonID  
--FName  
So, if I have 15 customers and 5 salespeople, I would like the end result to look something like this:
CustomerID -- FName -- S...
            
           
          
            
            I need to write a round robin algorithm to schedule load to n endpoints?
So if I have servers A, B and C
I wanted to make sure to round-robin through them for each request I get. How do I do this in C#?
...
            
           
          
            
            Hi
I wrote a code to simulate Round Robin algorithm.
How should I calculate Response Time and Throughput?  
Thanks
...
            
           
          
            
            Sketch: I have the following situation.
"host.domain" is a Round Robin DNS records which points to 3 IPs (ie: 10.0.0.2, 10.0.0.3, 10.0.0.4). 
The servers behind it, are SMTP servers for handling outgoing mail.
If I use PHP Pear's "Mail" package, and use the smtpinfo to set the host to "host.domain", I can not seem to get any other retu...