Questions tagged [c5]

An open-source .NET generic collection library.

C5 is the abbreviation for "Copenhagen Comprehensive Collection Classes for C#" which is an open-source generic collection library initiated by researchers at the University of Copenhagen (Denmark).

The home page can be found at itu.dk/research/c5 and I can do no better than to quote their own intro.

C5 is a library of generic collection classes for C# and other CLI languages and works with Microsoft .Net version 2.0 and later, and Mono version 2 and later.

C5 provides functionality and data structures not provided by the standard .Net System.Collections.Generic namespace, such as persistent tree data structures, heap based priority queues, hash indexed array lists and linked lists, and events on collection changes. Also, it is more comprehensive than collection class libraries on other similar platforms, such as Java. Unlike many other collection class libraries, C5 is designed with a strict policy of supporting "code to interface not implementation".

22 questions
0
votes
1 answer

How to read and get the C5.0 Model out of R

I've searched and search but can't find the answer. I have a c5_model trained and ready but I needed to do 100 trails to get it working to the level I want it to. But I'm stuck on trying to get it out of the model in R. I have done a summary but…
0
votes
1 answer

Invalid Cast in C5.IPriorityQueueHandle

I'm having issues implementing the C5.IPriorityQueueHandle interface with the C5 IntervalHeap. I can use the heap fine with null handles, using the default DeleteMin(), etc., but I want to be able to update the priority by the handle later. A…
0
votes
1 answer

concrete5: link not working in editing mode

When I login to my site's CMS (concrete5), the jQuery events won't fire anymore: I've built a site where certain parts should be editable. There is just one HTML and through jQuery I display/hide parts on that site. It is all working, except when I…
algro
  • 639
  • 4
  • 8
  • 25
0
votes
1 answer

How to search C5.TreeSet?

I have a C5.TreeSet, a sorted data structure. https://github.com/sestoft/C5/ Given a value x, I'd like to search the set S for the greatest index i such S[j] <= x for all j ≤ i (similar to Python's bisect.bisect). How can I do that? I was…
Colonel Panic
  • 132,665
  • 89
  • 401
  • 465
0
votes
0 answers

SQL For splitting Zip and City field in Microsoft C5

I have a customer who is running Microsoft C5 as their ERP System, and we are supposed to help them get it integrated to their CRM System. For that i have created an SQL view where i map the fields needed for importing customers according to our…
0
votes
2 answers

Load balancing with shared priority queues

I am trying to implement a load balancer at the moment and have hit a bit of a speed bump. The situation is as follows (simplified), I have a queue of requests queue_a which are processed by worker_a There is a second queue of requests queue_b…
mike
  • 3,146
  • 5
  • 32
  • 46
-1
votes
1 answer

How is the C5 SQL base structured?

I am working on a PHP/MySQL based ecommerce engine, and need it to be able to deliver orders to a SQL-driven Microsoft Dynamics C5 system. My plan was to make my mysql structure much alike with the C5 structure, so communications between these two…
Nils Munch
  • 8,805
  • 11
  • 51
  • 103
1
2