How do I call the reference solution in Cody?

조회 수: 1 (최근 30일)
George Bittar
George Bittar 2021년 6월 8일
답변: Christian Schröder 2022년 12월 30일
I created a problem in Cody that approximates e. To test the user's solution, I compare their solution to e. What I want to do instead is compare the user's solution to my reference solution. The question is how do I call the reference solution in the test suite?
This is currently my test suite.
sol=exp(1);
y_correct = playgame();
assessVariableEqual('y_correct',sol);
  댓글 수: 1
David Hill
David Hill 2021년 6월 8일
I don't think you can. Just place the reference solution into sol.

댓글을 달려면 로그인하십시오.

답변 (1개)

Christian Schröder
Christian Schröder 2022년 12월 30일
Like David said, this is not possible. The reference solution is only used to verify that your problem is in fact solvable, i.e. that the test suite can be passed; it's not otherwise available within the test suite.
If you want for some code to be run in the test suite, then you need to put it into the test suite. And yes, this'll mean that it'll be visible to prospective solvers; if this is not desirable, then you might be able to write a file containing P-code as part of the test suite, but I would advise against this unless you have a good reason for it.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by