Coder Social home page Coder Social logo

Comments (12)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
yes,i read this paper just a few days ago.
just wish they can offer some source-code

Original comment by [email protected] on 18 Nov 2010 at 8:35

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
put this here, check it later

http://www.ics.heacademy.ac.uk/resources/assessment/plagiarism/detectiontools_so
urcecode.html

Original comment by [email protected] on 18 Nov 2010 at 9:55

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
SIM 2.26 is great! The 1st version was released in 1983, and 2.26 in 2008. 
It's very efficient as it used hash-table and some algorithms in compilers and 
DNA-sequence-matching...

Original comment by [email protected] on 19 Nov 2010 at 12:58

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
See: http://www.few.vu.nl/~dick/sim.html

Original comment by [email protected] on 19 Nov 2010 at 1:00

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
i've download it, works well.
i'll try to integrate it into judge_client with some shell script 

Original comment by [email protected] on 21 Nov 2010 at 2:39

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
check this 
http://www.newsclan.com/JudgeOnline/status.php
Accepted tagged with * means similar with other previous solution

Original comment by [email protected] on 21 Nov 2010 at 7:16

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
What's your rule in judging one's code was a plagiarism? 
The comparability limen?

Original comment by [email protected] on 22 Nov 2010 at 12:12

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
50%, not very reasonable and objective, I think it's better to add a new colum 
'similarity' to the table to see the value...

Original comment by [email protected] on 22 Nov 2010 at 12:17

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
CREATE TABLE `solution_sim` (

  `solution_id` int(11) NOT NULL,
  `sim_solution_id` int(11) NULL,
  `sim` int(11) NULL,

  PRIMARY KEY  (`solution_id`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8;

ALTER TABLE `solution_sim` RENAME TO `sim`,
 CHANGE COLUMN `solution_id` `s_id` INTEGER  NOT NULL,
 CHANGE COLUMN `sim_solution_id` `sim_s_id` INTEGER  DEFAULT NULL,
 DROP PRIMARY KEY,
 ADD PRIMARY KEY  USING BTREE(`s_id`);

Here does the sim 'int' mean the sin_value * 100?

And any other index on the table needed(the 2nd colum), think for a while...?

Original comment by [email protected] on 22 Nov 2010 at 11:32

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
s_id sim_s_id sim means:

solution of (s_id) is (sim)% like solution of (sim_s_id)

Original comment by [email protected] on 22 Nov 2010 at 11:43

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024
bigger than 50% will be reported and more operation can be customized with 
customized php code

Original comment by [email protected] on 22 Nov 2010 at 11:45

from hustoj.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 4, 2024

Original comment by [email protected] on 16 Jul 2011 at 3:06

  • Changed state: Done

from hustoj.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.