Questions tagged [reference-implementation]
9 questions
8
votes
2 answers
Reference implementation of ASP.NET MVC using ViewModels, EditModels, and AutoMapper
A simple question: is there a good reference implementation of using ASP.NET MVC with an ORM, ViewModels, and EditModels (ideally using Automapper)?
I understand the benefits of using these purpose-specific models, but haven't been too happy with…

STW
- 44,917
- 17
- 105
- 161
8
votes
2 answers
Implementation of Vector Clocks
For my code which is running on different devices, i need to determine the ordering of messages which are sent between those devices. Therefore I would like to use vector clocks since I read vector clocks allow for the ordering of events.
Is there…
anon
4
votes
2 answers
Where is this TrySZBinarySearch implemented?
Whilst I was studying some micro performance techniques, I encountered, in the array.cs file, in the .net framework an external reference to a function for binary searches.
private static extern bool TrySZBinarySearch(Array sourceArray, int…

marcelo-ferraz
- 3,147
- 4
- 38
- 55
3
votes
2 answers
Converter from SAT to 3-SAT
Does anyone know of a good program to convert CNF files with any number of variables per clause to CNF files with exactly 3 variables per clause (3-CNF)? I've seen this algorithm in computer science books but can't find an implementation anywhere…

Elliot Gorokhovsky
- 3,610
- 2
- 31
- 56
3
votes
4 answers
Is there an ISO-Prolog reference implementation?
Java has a reference implementation.
Does ISO-Prolog have a reference implementation?
I do have INCITS/ISO/IEC 13211-1:1995 (R 2007) so no need to suggest that.
EDIT
Of note: Conformity Testing I: Syntax

Guy Coder
- 24,501
- 8
- 71
- 136
3
votes
1 answer
Method overloading with JAX-WS reference implementation
Method overloading is not allowed in the WS-I profile. The usual trick seems to be to add @WebMethod(operationName="...") annotations. If I do that, I get a ClassCastException.
Minimal example follows.
Interface:
package org.example.test;
import…

koppor
- 19,079
- 15
- 119
- 161
2
votes
4 answers
Working reference implementation of TwoFish?
The wikipedia page on TwoFish points at this reference implementation in C (and code) which is fine, but it lacks a main and my first few passes at implementing one didn't correctly process any of the "known vector" test cases I attempted. I suspect…

BCS
- 75,627
- 68
- 187
- 294
1
vote
1 answer
Rails Tutorial 11.4.1 - Extensions to the sample application exemplary repositories
Do you have, or know of, Github repositories with implemented feature extensions suggested in Section 11.4.1 of the Rails Tutorial that you consider exemplary and use for reference?
Preferably extensions for the version 3.2 sample app.

Paul Fioravanti
- 16,423
- 7
- 71
- 122
0
votes
1 answer
How do I facilitate and encourage implementation of my specification?
Suppose I have written a library in a programming language (e.g. Java) to interact with an external component (e.g. a database).
I would now like the community to provide implementations in other languages.
How can I enable and encourage, other…

WilliamMartin
- 553
- 5
- 15