We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/emicklei/melrose'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package op
import (
"testing"
"github.com/emicklei/melrose/core"
)
func TestDecomposeSequence(t *testing.T) {
s := core.MustParseSequence("1C# 2D_4+ = (2e-- 2e5--)")
ds := DecomposeSequence(s)
st := core.Storex(ds)
if st != "dynamicmap('2:+,4:--',fractionmap('1 2 4 2',sequence('C# D_ = (E E5)')))" {
t.Errorf("expected 'sequence(...)' got %s", st)
}
}